travis: skip dependency check for msrv

This commit is contained in:
ClementTsang 2020-07-06 02:33:04 -04:00
parent 121d483b50
commit ad99803d09

View File

@ -34,7 +34,10 @@ before_script:
- rustup target add $TARGET
- rustup component add clippy
script:
- cargo clippy -- -D clippy::all
- |
if [[ $TRAVIS_RUST_VERSION != "1.40.0" ]]; then
cargo clippy -- -D clippy::all
fi
- cargo build --verbose --target $TARGET
- |
if [[ $TRAVIS_RUST_VERSION != "1.40.0" ]]; then