Dropping nightly tests. They fail too often and take up useless time. Re-adding clippy too.

This commit is contained in:
ClementTsang 2020-02-17 23:01:58 -05:00
parent 2f59af412d
commit e7ed8088b5

View File

@ -2,7 +2,6 @@ language: rust
rust: rust:
- stable - stable
- beta - beta
- nightly
os: os:
- linux - linux
- osx - osx
@ -25,7 +24,9 @@ before_install:
fi fi
before_script: before_script:
- rustup target add $TARGET - rustup target add $TARGET
- rustup component add clippy
script: script:
- cargo clippy -- -D clippy::all
- cargo build --verbose --target $TARGET - cargo build --verbose --target $TARGET
- cargo test --verbose --target $TARGET - cargo test --verbose --target $TARGET