1
0
mirror of https://github.com/actix/actix-extras.git synced 2024-12-03 19:42:13 +01:00
This commit is contained in:
Yuki Okushi 2020-01-02 04:29:10 +09:00
parent 06a2499071
commit d7387ca5b5

View File

@ -4,8 +4,8 @@ rust:
- beta
- nightly
sudo: required
dist: trusty
os: linux
dist: xenial
env:
global:
@ -26,7 +26,7 @@ addons:
before_script:
- |
if [[ "$TRAVIS_RUST_VERSION" == "nightly" ]]; then
( ( cargo install clippy && export CLIPPY=true ) || export CLIPPY=false );
( ( rustup component add clippy && export CLIPPY=true ) || export CLIPPY=false );
fi
- export PATH=$PATH:~/.cargo/bin