Skip to content

Commit

Permalink
Add --all-targets in clippy invocation in travis
Browse files Browse the repository at this point in the history
  • Loading branch information
TeXitoi committed Sep 15, 2020
1 parent d717ede commit 61ae236
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ script:
- cargo clean
- cargo build --verbose --features=use_core
- cargo test --verbose --features=use_core
- if ${HAS_CLIPPY}; then cargo clippy --verbose --features=use_core; fi
- if ${HAS_CLIPPY}; then cargo clippy --verbose --all-targets --features=use_core; fi

- if [ ${TRAVIS_RUST_VERSION} = "nightly" ]; then cargo update -Z minimal-versions; fi
- if [ ${TRAVIS_RUST_VERSION} = "nightly" ]; then cargo build --verbose; fi
- if [ ${TRAVIS_RUST_VERSION} = "nightly" ]; then cargo test --verbose; fi
- if [ ${TRAVIS_RUST_VERSION} = "nightly" ]; then cargo build --features=use_core; fi
- if [ ${TRAVIS_RUST_VERSION} = "nightly" ]; then cargo test --verbose --features=use_core; fi

- if [ ${TRAVIS_RUST_VERSION} = "stable" ]; then cargo test compile_test -- --ignored; fi
- if [ ${TRAVIS_RUST_VERSION} = "stable" ]; then cargo test compile_test -- --ignored; fi

0 comments on commit 61ae236

Please sign in to comment.