From a167f8af1fb90e0ddd22bf481502abfbf6ab0868 Mon Sep 17 00:00:00 2001 From: Goncalo-FradeIOHK Date: Fri, 19 Aug 2022 09:40:39 +0100 Subject: [PATCH] ci: add test workflow Fixes ATL-1642 --- .github/workflows/test.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 00000000..82283ced --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,20 @@ +--- +name: Test + +on: + push: + branches: + - main + pull_request: + branches: [main] + +jobs: + lint: + name: test + runs-on: macos-latest + steps: + - name: Checkout Code + uses: actions/checkout@v3 + + - name: Test + run: "swift test"