We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c411498 commit dbb5313Copy full SHA for dbb5313
1 file changed
.github/workflows/main.yml
@@ -20,10 +20,14 @@ jobs:
20
- run: cargo build --all
21
# test
22
- run: cargo test --all
23
+ - run: cargo test --all-features
24
+ - run: cargo test --no-default-features
25
+ - run: cargo test --no-default-features --features=alloc
26
+ - run: cargo test --no-default-features --features=descriptive-errors
27
+ - run: cargo test --no-default-features --features=bits
28
+ - run: cargo test --no-default-features --features=logging
29
# run examples
30
- run: cargo run --example 2>&1 | grep -P ' ' | awk '{print $1}' | xargs -i cargo run --example {}
- # test with no bits feature (don't test docs)
- - run: cargo test --lib --examples --tests --features std --no-default-features
31
32
# Only build on MSRV, since trybuild will fail on older version
33
build-msrv:
0 commit comments