We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 46d64f0 commit c10c704Copy full SHA for c10c704
.appveyor.yml
@@ -15,6 +15,7 @@ install:
15
- if NOT "%TARGET%" == "x86_64-pc-windows-msvc" rustup target add %TARGET%
16
- rustc -vV
17
- cargo -vV
18
+ - cargo install clippy
19
20
build: false
21
.travis.yml
@@ -21,9 +21,13 @@ matrix:
script: |
22
cargo install rustfmt-nightly
23
cargo fmt --all -- --write-mode=diff
24
+ - env: CLIPPY=On TARGET=x86_64-unknown-linux-gnu NO_ADD=1
25
+ script: |
26
+ cargo install clippy
27
+ cargo clippy --all -- -D clippy-pedantic
28
allow_failures:
29
- env: RUSTFMT=On TARGET=x86_64-unknown-linux-gnu NO_ADD=1
-
30
31
install:
32
- if [ "$NO_ADD" == "" ]; then rustup target add $TARGET; fi
33
0 commit comments