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 105b331 commit 0880b09Copy full SHA for 0880b09
.github/workflows/test.yml
@@ -26,10 +26,20 @@ jobs:
26
components: clippy
27
- name: Cargo test
28
run: cargo test --workspace --all-targets
29
+
30
+ # Check for clippy warnings
31
+ clippy:
32
+ name: Cargo clippy
33
+ runs-on: ubuntu-latest
34
+ steps:
35
+ - uses: actions/checkout@v4
36
+ - uses: actions-rust-lang/setup-rust-toolchain@v1
37
+ with:
38
+ components: clippy
39
- name: Cargo clippy
40
run: cargo clippy --workspace --all-targets
41
env:
- RUSTFLAGS: ""
42
+ RUSTFLAGS: "" # Don't make test fail on clippy
43
44
# Check mdbook files for errors
45
mdbook:
0 commit comments