gitlab-ci.yml -- on rust-latest, turn all clippy warnings into errors.

This commit is contained in:
Nick Mathewson 2020-12-07 16:18:21 -05:00
parent a1f1dac4eb
commit 8301ae699b
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ rust-latest:
- cargo build --verbose --target x86_64-unknown-linux-gnu --all
- cargo test --verbose --all
- rustup component add clippy rustfmt
- cargo clippy
- cargo clippy -- -D warnings
- cargo fmt --all -- --check
rust-nightly: