Skip to content

Commit

Permalink
chore: add ci workflow file
Browse files Browse the repository at this point in the history
  • Loading branch information
dominicegginton committed Apr 29, 2020
1 parent 8db40f9 commit 6255465
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: CI
on: push
jobs:
test:
name: Test on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [macOS-latest, ubuntu-latest]
steps:
- uses: actions/checkout@v2
- name: Build Source & Tests
run: swift build --build-tests
- name: Test
run: swift test --enable-test-discovery

0 comments on commit 6255465

Please sign in to comment.