mirror of
https://github.com/actix/actix-web.git
synced 2024-12-18 14:16:47 +00:00
enable clippy
This commit is contained in:
parent
26c1fdd31f
commit
09773eca82
1 changed files with 8 additions and 4 deletions
12
.travis.yml
12
.travis.yml
|
@ -24,14 +24,18 @@ addons:
|
|||
|
||||
# Add clippy
|
||||
before_script:
|
||||
#- |
|
||||
# if [[ "$TRAVIS_RUST_VERSION" == "nightly" ]]; then
|
||||
# ( ( cargo install clippy && export CLIPPY=true ) || export CLIPPY=false );
|
||||
# fi
|
||||
- |
|
||||
if [[ "$TRAVIS_RUST_VERSION" == "nightly" ]]; then
|
||||
( ( cargo install clippy && export CLIPPY=true ) || export CLIPPY=false );
|
||||
fi
|
||||
- export PATH=$PATH:~/.cargo/bin
|
||||
|
||||
script:
|
||||
- cargo test --no-default-features
|
||||
- |
|
||||
if [[ "$TRAVIS_RUST_VERSION" == "nightly" && $CLIPPY ]]; then
|
||||
cargo clippy
|
||||
fi
|
||||
|
||||
# Upload docs
|
||||
after_success:
|
||||
|
|
Loading…
Reference in a new issue