We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 96bd2eb commit 282e086Copy full SHA for 282e086
.github/workflows/ci.yml
@@ -52,11 +52,18 @@ jobs:
52
- run: rustup target add x86_64-unknown-linux-musl
53
if: ${{ matrix.os == 'ubuntu-latest' }}
54
55
+ - run: pip install cargo-zigbuild
56
+ if: ${{ matrix.os == 'ubuntu-latest' }}
57
+
58
- run: cargo check --all-targets --all-features
59
env:
60
RUSTFLAGS: '-D warnings --cfg tokio_unstable' # also update .cargo/config.toml
61
62
- run: cargo test
63
+ if: ${{ matrix.os != 'ubuntu-latest' }}
64
65
+ - run: cargo-zigbuild test --target x86_64-unknown-linux-gnu.2.17
66
67
68
lint:
69
name: Lint
0 commit comments