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.
2 parents c440965 + ec04df5 commit 0327f76Copy full SHA for 0327f76
.github/workflows/build.yml
@@ -44,10 +44,14 @@ jobs:
44
shell: bash
45
run: rustup run ${{ matrix.rust }} cargo fmt --all -- --check
46
47
- - name: Clippy
+ - name: Clippy (default features)
48
49
run: rustup run ${{ matrix.rust }} cargo clippy --all --bins --all-targets --examples --benches --tests -- -D warnings
50
51
+ - name: Clippy (all features)
52
+ shell: bash
53
+ run: rustup run ${{ matrix.rust }} cargo clippy --all --all-features --bins --all-targets --examples --benches --tests -- -D warnings
54
+
55
- name: Test (release)
56
57
run: rustup run ${{ matrix.rust }} cargo test --all --verbose --release
0 commit comments