]> git.lizzy.rs Git - rust.git/blobdiff - README.md
Replace another occurrence of "".to_owned()
[rust.git] / README.md
index e41de0460656da5461e943926e08b3c6e25f618f..79cb35587f487faa953b4b5d01f7bb267cf60352 100644 (file)
--- a/README.md
+++ b/README.md
@@ -82,10 +82,15 @@ You can add Clippy to Travis CI in the same way you use it locally:
 
 ```yml
 - rust: stable
+- rust: beta
   before_script:
     - rustup component add clippy-preview
   script:
     - cargo clippy
+# if you want the build job to fail when encountering warnings, use
+    - cargo clippy -- -D warnings
+# in order to also check tests and none-default crate features, use
+    - cargo clippy --all-targets --all-features -- -D warnings
     - cargo test
     # etc.
 ```