From f4e31f790e319896dee8dafa3f9bb393923c162f Mon Sep 17 00:00:00 2001 From: Dongsu Park Date: Fri, 27 Oct 2023 18:02:24 +0200 Subject: [PATCH] .travis.yml: delete travis config Travis CI is not used any more. Delete. --- .travis.yml | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 .travis.yml 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'