From 9e097539e44293c8070e1b8a5d7a03119d7b67b1 Mon Sep 17 00:00:00 2001 From: Jonas Platte Date: Tue, 3 Dec 2019 20:47:24 +0100 Subject: [PATCH] Remove outdated conditionals from .travis.yml --- .travis.yml | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/.travis.yml b/.travis.yml index 51855555..26e87600 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,10 +11,7 @@ jobs: before_script: - rustup component add rustfmt - - | - if [ "$TRAVIS_RUST_VERSION" != "1.34.2" ]; then - rustup component add clippy - fi + - rustup component add clippy - | if [ "$TRAVIS_RUST_VERSION" == "stable" ]; then cargo install --force cargo-audit @@ -26,10 +23,7 @@ script: cargo audit fi - cargo fmt -- --check - - | - if [ "$TRAVIS_RUST_VERSION" != "1.34.2" ]; then - cargo clippy --all-targets --all-features -- -D warnings - fi + - cargo clippy --all-targets --all-features -- -D warnings - cargo build --verbose - cargo test --verbose if: "type != push OR (tag IS blank AND branch = master)"