We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent afc0549 commit 5fc94d1Copy full SHA for 5fc94d1
.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
@@ -27,9 +27,13 @@ matrix:
27
cargo fmt -- --write-mode=diff
28
cd ../simd-test-macro
29
30
+ - env: CLIPPY=On TARGET=x86_64-unknown-linux-gnu NO_ADD=1
31
+ script: |
32
+ cargo install clippy
33
+ cargo clippy --all -- -D clippy-pedantic
34
allow_failures:
35
- env: RUSTFMT=On TARGET=x86_64-unknown-linux-gnu NO_ADD=1
-
36
37
install:
38
- if [ "$NO_ADD" == "" ]; then rustup target add $TARGET; fi
39
0 commit comments