Skip to content

Commit 199ba6e

Browse files
committed
update workflow
1 parent ccfb34a commit 199ba6e

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/build.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,18 @@ jobs:
3535
run: swift test --parallel
3636

3737
linux:
38-
name: Test on Linux
38+
name: Test Swift ${{ matrix.swift }} on Ubuntu Latest
3939
runs-on: ubuntu-latest
40+
strategy:
41+
matrix:
42+
swift: ["6.0", "6.1"]
4043
steps:
4144
- uses: swift-actions/setup-swift@v2
45+
with:
46+
swift-version: ${{ matrix.swift }}
4247
- uses: actions/checkout@v3
4348
- name: Test
44-
run: swift test --enable-code-coverage
49+
run: swift test --parallel
4550
# TODO: Add test coverage, but it's currently not working with Swift 6.1.0
4651
# - name: Get test coverage html
4752
# run: |

0 commit comments

Comments
 (0)