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 7136574 commit 2c16a2bCopy full SHA for 2c16a2b
.github/workflows/rust.yml
@@ -18,6 +18,9 @@ jobs:
18
strategy:
19
matrix:
20
rust_channel: [ stable, beta, nightly ]
21
+ include:
22
+ - rust_channel: nightly
23
+ check_cfg: '-Zcheck-cfg'
24
runs-on: ubuntu-latest
25
steps:
26
- uses: actions/checkout@v4
@@ -28,9 +31,9 @@ jobs:
28
31
# compiles on big endian.
29
32
targets: powerpc64-unknown-linux-gnu
30
33
- name: Build
- run: cargo build --verbose --all
34
+ run: cargo build --verbose --all ${{ matrix.check_cfg }}
35
- name: Run tests
- run: cargo test --verbose --all
36
+ run: cargo test --verbose --all ${{ matrix.check_cfg }}
37
- name: Docs
38
run: cargo doc --verbose --all
39
- name: Check big endian
0 commit comments