We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 73f53a2 commit a9c749bCopy full SHA for a9c749b
.github/workflows/rust.yml
@@ -33,6 +33,8 @@ jobs:
33
- uses: actions/checkout@v4
34
- uses: dtolnay/rust-toolchain@stable
35
- run: cargo test
36
+ - run: cargo test --all-features
37
+ - run: cargo test --no-default-features
38
39
fmt:
40
name: Rustfmt
@@ -53,6 +55,8 @@ jobs:
53
55
with:
54
56
components: clippy
57
- run: cargo clippy -- -D warnings
58
+ - run: cargo clippy --all-features -- -D warnings
59
+ - run: cargo clippy --no-default-features -- -D warnings
60
61
doc:
62
name: Build documentation
0 commit comments