diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 0b09fda..0000000 --- a/.travis.yml +++ /dev/null @@ -1,27 +0,0 @@ -language: rust - -rust: - - 1.28.0 # minimum supported toolchain - - 1.31.0 # pinned toolchain for clippy - - stable - - beta - - nightly - -matrix: - allow_failures: - - rust: nightly - -env: - global: - - CLIPPY_RUST_VERSION=1.31.0 - -before_script: - - bash -c 'if [[ "$TRAVIS_RUST_VERSION" == "$CLIPPY_RUST_VERSION" ]]; then - rustup component add clippy; - fi' - -script: - - cargo test - - bash -c 'if [[ "$TRAVIS_RUST_VERSION" == "$CLIPPY_RUST_VERSION" ]]; then - cargo clippy -- -D warnings; - fi'