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 e270050 + 535f4c2 commit daa9223Copy full SHA for daa9223
README.md
@@ -82,10 +82,15 @@ You can add Clippy to Travis CI in the same way you use it locally:
82
83
```yml
84
- rust: stable
85
+- rust: beta
86
before_script:
87
- rustup component add clippy-preview
88
script:
89
- cargo clippy
90
+# if you want the build job to fail when encountering warnings, use
91
+ - cargo clippy -- -D warnings
92
+# in order to also check tests and none-default crate features, use
93
+ - cargo clippy --all-targets --all-features -- -D warnings
94
- cargo test
95
# etc.
96
```
0 commit comments