We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d34c1b commit 6af1c2bCopy full SHA for 6af1c2b
.github/workflows/test.yml
@@ -0,0 +1,21 @@
1
+name: Test
2
+
3
+on:
4
+ push:
5
+ branches: [ master ]
6
+ pull_request:
7
8
+jobs:
9
+ build:
10
+ name: Build and test on ${{ matrix.os }}
11
+ runs-on: ${{ matrix.os }}
12
+ strategy:
13
+ matrix:
14
+ os: [macos-latest, ubuntu-latest]
15
+ steps:
16
+ - uses: actions/checkout@v2
17
+ - uses: fwal/setup-swift@v1
18
+ - name: Build
19
+ run: swift build
20
+ - name: Run tests
21
+ run: swift test
0 commit comments