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.
2 parents 1f2d8a3 + ca3779e commit fd99a0eCopy full SHA for fd99a0e
.github/workflows/CI.yml
@@ -26,10 +26,12 @@ jobs:
26
test:
27
name: Test Suite
28
runs-on: ${{ matrix.os }}
29
+ continue-on-error: ${{ matrix.zig == 'master' }}
30
strategy:
31
matrix:
32
os: [ubuntu-latest, macos-latest, windows-latest]
33
toolchain: [stable, nightly]
34
+ zig: [0.9.1, master]
35
steps:
36
- uses: actions/checkout@v2
37
- uses: msys2/setup-msys2@v2
@@ -60,7 +62,10 @@ jobs:
60
62
tests/libhello/target
61
63
key: test-crates-${{ runner.os }}-${{ steps.rustup.outputs.rustc_hash }}-${{ hashFiles('tests/*/Cargo.lock') }}
64
- name: Install zig
- run: pip3 install ziglang
65
+ uses: goto-bus-stop/setup-zig@v1
66
+ with:
67
+ version: ${{ matrix.zig }}
68
+ - run: zig version
69
- uses: actions-rs/cargo@v1
70
with:
71
command: build
0 commit comments