From e0d1093b293bb3b7808bf634d2a17c5f8929f76c Mon Sep 17 00:00:00 2001 From: Kyle Fuller Date: Fri, 30 Apr 2021 18:31:24 +0100 Subject: [PATCH] chore: migrate to GitHub Actions --- .github/workflows/main.yaml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .github/workflows/main.yaml diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml new file mode 100644 index 0000000..24f276b --- /dev/null +++ b/.github/workflows/main.yaml @@ -0,0 +1,10 @@ +on: [push, pull_request] +jobs: + test: + runs-on: ${{ matrix.os }} + strategy: + matrix: + os: [ubuntu-latest, macos-latest] + steps: + - uses: actions/checkout@v2 + - run: swift test --enable-test-discovery