We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5c25515 commit 557b23eCopy full SHA for 557b23e
1 file changed
.github/workflows/test.yml
@@ -4,13 +4,17 @@ on:
4
push: { branches: [ main ] }
5
6
jobs:
7
- test:
8
- strategy:
9
- matrix:
10
- os: [ubuntu-latest, macos-latest]
11
- runs-on: ${{ matrix.os }}
+ darwin-test:
+ runs-on: macos-latest
12
steps:
13
- uses: fwal/setup-swift@v1
14
- uses: actions/checkout@v2
15
- - name: Run tests
16
- run: swift test
+ - name: Darwin build & test
+ run: swift test --skip IntegrationTests
+ linux-build:
+ runs-on: ubuntu-latest
+ steps:
17
+ - uses: fwal/setup-swift@v1
18
+ - uses: actions/checkout@v2
19
+ - name: Linux build
20
+ run: swift build --target HaystackClientNIO
0 commit comments