Back to Rust Clippy

Travis CI

book/src/continuous_integration/travis.md

0.0.212461 B
Original Source

Travis CI

You can add Clippy to Travis CI in the same way you use it locally:

yml
language: rust
rust:
  - stable
  - beta
before_script:
  - rustup component add clippy
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 non-default crate features, use
  - cargo clippy --all-targets --all-features -- -D warnings
  - cargo test
  # etc.