From 6dfad5d144845c2697639b3334a8bc59a14f6e8c Mon Sep 17 00:00:00 2001 From: Bruce Mitchener Date: Sun, 7 Jul 2024 11:27:28 +0700 Subject: [PATCH] Remove Travis CI config --- .travis.yml | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index bc0070e..0000000 --- a/.travis.yml +++ /dev/null @@ -1,20 +0,0 @@ -language: rust -sudo: false -matrix: - include: - - rust: stable - - rust: nightly -script: - - cargo build - - cargo test - - cargo test --features serde - - | - if [ "$TRAVIS_RUST_VERSION" == "nightly" ]; then - cargo test --no-default-features - cargo test --no-default-features --features serde; - fi - - cargo doc --no-deps -after_success: | - if [ "$TRAVIS_RUST_VERSION" == "nightly" ]; then - cargo bench; - fi