We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 556b2e7 commit 5fabb5aCopy full SHA for 5fabb5a
.appveyor.yml
@@ -15,12 +15,14 @@ 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
22
test_script:
23
- cargo test --target %TARGET%
24
- cargo test --target %TARGET% --release
25
+ - cargo clippy -- -D clippy-pedantic
26
27
branches:
28
only:
.travis.yml
@@ -20,6 +20,7 @@ install:
script:
- cargo generate-lockfile
- ci/run-docker.sh $TARGET
notifications:
ci/run.sh
@@ -4,3 +4,4 @@ set -ex
4
5
cargo test --target $TARGET
6
cargo test --release --target $TARGET
7
+cargo clippy -- -D clippy-pedantic
0 commit comments