We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7ffbab3 commit fb2504eCopy full SHA for fb2504e
1 file changed
.github/workflows/ci.yml
@@ -28,3 +28,17 @@ jobs:
28
uses: actions/checkout@v3
29
- name: Run Tests
30
run: swift test
31
+ linux:
32
+ name: Linux (Swift ${{ matrix.swift }})
33
+ strategy:
34
+ fail-fast: false
35
+ matrix:
36
+ swift: ["5.5", "5.6"]
37
+ runs-on: ubuntu-latest
38
+ container: swift:${{ matrix.swift }}
39
+ steps:
40
+ - name: Checkout Repo
41
+ uses: actions/checkout@v3
42
+ - name: Run Tests
43
+ run: swift test
44
+
0 commit comments