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 6cdeebc commit e75087dCopy full SHA for e75087d
.github/workflows/main.yml
@@ -20,10 +20,13 @@ 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=bits
27
+ - run: cargo test --no-default-features --features=logging
28
# run examples
29
- 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
30
31
# Only build on MSRV, since trybuild will fail on older version
32
build-msrv:
0 commit comments