Skip to content

Commit 5fabb5a

Browse files
committed
[ci] enable clippy
1 parent 556b2e7 commit 5fabb5a

File tree

3 files changed

+4
-0
lines changed

3 files changed

+4
-0
lines changed

.appveyor.yml

+2
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,14 @@ install:
1515
- if NOT "%TARGET%" == "x86_64-pc-windows-msvc" rustup target add %TARGET%
1616
- rustc -vV
1717
- cargo -vV
18+
- cargo install clippy
1819

1920
build: false
2021

2122
test_script:
2223
- cargo test --target %TARGET%
2324
- cargo test --target %TARGET% --release
25+
- cargo clippy -- -D clippy-pedantic
2426

2527
branches:
2628
only:

.travis.yml

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ install:
2020

2121
script:
2222
- cargo generate-lockfile
23+
- cargo install clippy
2324
- ci/run-docker.sh $TARGET
2425

2526
notifications:

ci/run.sh

+1
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@ set -ex
44

55
cargo test --target $TARGET
66
cargo test --release --target $TARGET
7+
cargo clippy -- -D clippy-pedantic

0 commit comments

Comments
 (0)