From d85191d5114a208c3a8e44815390f3803415e73b Mon Sep 17 00:00:00 2001 From: Jonas Platte Date: Fri, 24 Apr 2020 19:39:25 +0200 Subject: [PATCH] Remove travis CI --- .travis.yml | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 01f78d87..00000000 --- a/.travis.yml +++ /dev/null @@ -1,25 +0,0 @@ -language: "rust" -cache: "cargo" -rust: - - 1.40.0 - - stable - - beta - - nightly -jobs: - allow_failures: - - rust: nightly - fast_finish: true - -before_script: - - rustup component add rustfmt - - rustup component add clippy - - cargo generate-lockfile -script: - - cargo fmt -- --check - - | - if [ "$TRAVIS_RUST_VERSION" != "1.39.0" ]; then - cargo clippy --all-targets --all-features -- -D warnings - fi - - cargo build --verbose - - cargo test --verbose -if: "type != push OR (tag IS blank AND branch = master)"