We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 29224c3 commit 4f8e10aCopy full SHA for 4f8e10a
.github/workflows/test.yml
@@ -17,9 +17,17 @@ jobs:
17
18
# test action works running from the graph
19
test:
20
- runs-on: ubuntu-latest
+ strategy:
21
+ fail-fast: true
22
+ matrix:
23
+ include:
24
+ - swift-version: wasm-5.7.1-RELEASE
25
+ os: ubuntu-20.04
26
+ - swift-version: wasm-5.6.0-RELEASE
27
+ os: macos-11
28
+ runs-on: ${{ matrix.os }}
29
steps:
30
- uses: actions/checkout@v3
31
- uses: ./
32
with:
- swift-version: wasm-5.7.1-RELEASE
33
+ swift-version: ${{ matrix.swift-version }}
0 commit comments