Skip to content

Commit fd99a0e

Browse files
authored
Merge pull request #15 from messense/zig-nightly
Run tests with zig nightly
2 parents 1f2d8a3 + ca3779e commit fd99a0e

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/CI.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,12 @@ jobs:
2626
test:
2727
name: Test Suite
2828
runs-on: ${{ matrix.os }}
29+
continue-on-error: ${{ matrix.zig == 'master' }}
2930
strategy:
3031
matrix:
3132
os: [ubuntu-latest, macos-latest, windows-latest]
3233
toolchain: [stable, nightly]
34+
zig: [0.9.1, master]
3335
steps:
3436
- uses: actions/checkout@v2
3537
- uses: msys2/setup-msys2@v2
@@ -60,7 +62,10 @@ jobs:
6062
tests/libhello/target
6163
key: test-crates-${{ runner.os }}-${{ steps.rustup.outputs.rustc_hash }}-${{ hashFiles('tests/*/Cargo.lock') }}
6264
- name: Install zig
63-
run: pip3 install ziglang
65+
uses: goto-bus-stop/setup-zig@v1
66+
with:
67+
version: ${{ matrix.zig }}
68+
- run: zig version
6469
- uses: actions-rs/cargo@v1
6570
with:
6671
command: build

0 commit comments

Comments
 (0)