Skip to content

Commit fb2504e

Browse files
authored
Add CI workflows for testing Linux (#3)
1 parent 7ffbab3 commit fb2504e

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.github/workflows/ci.yml

+14
Original file line numberDiff line numberDiff line change
@@ -28,3 +28,17 @@ jobs:
2828
uses: actions/checkout@v3
2929
- name: Run Tests
3030
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

Comments
 (0)