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 2c3fcce commit 569a110Copy full SHA for 569a110
.github/workflows/test.yml
@@ -0,0 +1,16 @@
1
+name: test
2
+on:
3
+ pull_request:
4
+ push: { branches: [ main ] }
5
+
6
+jobs:
7
+ test:
8
+ strategy:
9
+ matrix:
10
+ os: [ubuntu-latest, macos-latest]
11
+ runs-on: ${{ matrix.os }}
12
+ steps:
13
+ - uses: fwal/setup-swift@v1
14
+ - uses: actions/checkout@v2
15
+ - name: Run tests
16
+ run: swift test
0 commit comments