Fixup for previous commit

This commit is contained in:
Jonas Platte 2019-11-22 11:05:16 +01:00
parent 15f875a06e
commit f2addacccb
No known key found for this signature in database
GPG Key ID: 7D261D771D915378

View File

@ -13,7 +13,7 @@ jobs:
before_script:
- rustup component add rustfmt
- |
if [ "$TRAVIS_RUST_VERSION" != "1.34.2" ]; then
if [ "$TRAVIS_RUST_VERSION" != "1.36.0" ]; then
rustup component add clippy || true
fi
- |
@ -28,7 +28,7 @@ script:
fi
- cargo fmt --all -- --check
- |
if [ "$TRAVIS_RUST_VERSION" != "1.34.2" ] && ( rustup component list | grep -q clippy ); then
if [ "$TRAVIS_RUST_VERSION" != "1.36.0" ] && ( rustup component list | grep -q clippy ); then
cargo clippy --all --all-targets --all-features -- -D warnings
fi
- cargo build --all --verbose