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.
1 parent 60d1b8d commit 219fedcCopy full SHA for 219fedc
.travis.yml
@@ -8,12 +8,22 @@ rust:
8
9
matrix:
10
include:
11
- - rust: 1.24.0 # `stable`: Locking down for consistent behavior
12
- env: RUSTFMT
+ - env: RUSTFMT
+ rust: 1.24.0 # `stable`: Locking down for consistent behavior
13
install:
14
- rustup component add rustfmt-preview
15
script:
16
- cargo fmt -- --write-mode=diff
17
+ - env: RUSTFLAGS="-D warnings"
18
19
+ script:
20
+ - cargo check --tests
21
+ - env: CLIPPY_VERSION=0.0.179
22
+ rust: nightly-2018-01-12
23
+ install:
24
+ - travis_wait cargo install clippy --version $CLIPPY_VERSION || echo "clippy already installed"
25
26
+ - cargo clippy -- -D clippy
27
28
29
- rustc -Vv
0 commit comments