Skip to content

Commit eabda0f

Browse files
committed
Use matrix for Linux tests
1 parent ec4055a commit eabda0f

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,14 @@ jobs:
2828
Linux:
2929
# https://github.com/actions/runner-images
3030
runs-on: ubuntu-latest
31+
strategy:
32+
matrix:
33+
image: [
34+
'swift:5.8',
35+
'swiftlang/swift@sha256:f212429011a4c3592ffaa660fd78b5bc149e9df7920da02dfc0e7a761582fa10' # swiftlang/swift:nightly-5.9-focal 2023-08-16
36+
]
3137
container:
32-
image: swiftlang/swift@sha256:f212429011a4c3592ffaa660fd78b5bc149e9df7920da02dfc0e7a761582fa10 # swiftlang/swift:nightly-5.9-focal 2023-08-16
38+
image: ${{ matrix.image }}
3339
steps:
3440
- uses: actions/checkout@v3
3541
- run: git config --global user.email "[email protected]"

0 commit comments

Comments
 (0)