From 75868bcc7722a934ba61b24782e88743a0a4a501 Mon Sep 17 00:00:00 2001 From: Jonas Platte Date: Sun, 7 Jul 2019 20:17:08 +0200 Subject: [PATCH] Fix stupid typos in .travis.yml --- .travis.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index fc0dcb5..8e89616 100644 --- a/.travis.yml +++ b/.travis.yml @@ -14,14 +14,14 @@ matrix: - rust: beta env: ALL_FEATURES='std,serde' - rust: nightly - env: ALL_FEATURES='std,serde,rocket' + env: ALL_FEATURES='std,serde,rocket_04' allow_failure: - rust: nightly script: - - if ( rustup component list | grep -q clippy ); then cargo fmt --all -- --check; fi + - if ( rustup component list | grep -q rustfmt ); then cargo fmt --all -- --check; fi - | - if ( rustup component list | grep -q rustfmt ); then + if ( rustup component list | grep -q clippy ); then cargo clippy --all --all-targets --features "$ALL_FEATURES" -- -D warnings fi # Almost all tests without std / no_std mode