Skip to content

Commit

Permalink
Fix stupid typos in .travis.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
jplatte committed Jul 7, 2019
1 parent 9feadd6 commit 75868bc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 75868bc

Please sign in to comment.