We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 60f0f10 commit 6e9f30cCopy full SHA for 6e9f30c
.github/workflows/test.yml
@@ -23,7 +23,11 @@ jobs:
23
container: ${{ matrix.base-image }}
24
steps:
25
- name: Checkout self
26
+ if: ${{ !startsWith(matrix.base-image, 'amazonlinux') }}
27
uses: actions/checkout@v4
28
+ - name: Checkout self
29
+ if: ${{ startsWith(matrix.base-image, 'amazonlinux') }}
30
+ uses: actions/checkout@v3
31
- name: Test
32
uses: vapor/swiftly-action@main
33
with: ${{ fromJSON(matrix.test-args) }}
0 commit comments