We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 074a8e1 commit ce05cffCopy full SHA for ce05cff
.github/workflows/TestingCI.yml
@@ -28,7 +28,11 @@ jobs:
28
- name: Check formatting
29
run: cargo fmt --all -- --check
30
- name: Clippy
31
- run: cargo clippy --all-targets -- -D warnings
+ run: |
32
+ # First pass: show all warnings (don't fail)
33
+ cargo clippy --all-targets 2>&1 || true
34
+ # Second pass: fail if any warnings exist
35
+ cargo clippy --all-targets -- -D warnings
36
37
linux-ubuntu:
38
needs: lint
0 commit comments