Travis: add cargo-clippy to $PATH

This commit is contained in:
Chris Wong 2016-12-17 14:18:48 +13:00
parent dab8e5108a
commit 7925fbad43

View file

@ -4,11 +4,12 @@ sudo: false
before_script:
- cargo install clippy || true
- export PATH=$HOME/.cargo/bin:$PATH
script:
- ( cd maud && cargo test --all-features )
- if command -v cargo-clippy; then ( cd maud && cargo clippy -- -D warnings ); fi
- if command -v cargo-clippy > /dev/null; then ( cd maud && cargo clippy -- -D warnings ); fi
- ( cd maud_macros && cargo test --all-features )
- if command -v cargo-clippy; then ( cd maud_macros && cargo clippy -- -D warnings ); fi
- if command -v cargo-clippy > /dev/null; then ( cd maud_macros && cargo clippy -- -D warnings ); fi
- ( cd maud_extras && cargo test --all-features )
- if command -v cargo-clippy; then ( cd maud_extras && cargo clippy -- -D warnings ); fi
- if command -v cargo-clippy > /dev/null; then ( cd maud_extras && cargo clippy -- -D warnings ); fi