Skip to content

Commit 2c16a2b

Browse files
wip
1 parent 7136574 commit 2c16a2b

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/rust.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@ jobs:
1818
strategy:
1919
matrix:
2020
rust_channel: [ stable, beta, nightly ]
21+
include:
22+
- rust_channel: nightly
23+
check_cfg: '-Zcheck-cfg'
2124
runs-on: ubuntu-latest
2225
steps:
2326
- uses: actions/checkout@v4
@@ -28,9 +31,9 @@ jobs:
2831
# compiles on big endian.
2932
targets: powerpc64-unknown-linux-gnu
3033
- name: Build
31-
run: cargo build --verbose --all
34+
run: cargo build --verbose --all ${{ matrix.check_cfg }}
3235
- name: Run tests
33-
run: cargo test --verbose --all
36+
run: cargo test --verbose --all ${{ matrix.check_cfg }}
3437
- name: Docs
3538
run: cargo doc --verbose --all
3639
- name: Check big endian

0 commit comments

Comments
 (0)