From 2ef2657aff246e49496a3425028c705bbfa212d0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20Sa=CC=81nchez?= Date: Sat, 29 May 2021 18:42:39 -0600 Subject: [PATCH] improvement: add test workflow --- .github/workflows/test.yml | 11 +++++++++++ 1 file changed, 11 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 0000000..1184017 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,11 @@ +name: Test +on: pull_request +jobs: + all_tests: + name: All tests + runs-on: macos-latest + steps: + - name: Checkout + uses: actions/checkout@v2 + - name: Run tests + run: swift test \ No newline at end of file