From a2c6d4bab3551408c13f3f11182d1ec7a0a3958e Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Tue, 5 May 2020 11:29:48 -0700 Subject: [PATCH] Remove Travis configuration --- .github/workflows/ci.yml | 2 +- .travis.yml | 28 ---------------------------- 2 files changed, 1 insertion(+), 29 deletions(-) delete mode 100644 .travis.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d157e90..ec51099 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,4 +1,4 @@ -name: test +name: CI on: push: diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 34fd8de..0000000 --- a/.travis.yml +++ /dev/null @@ -1,28 +0,0 @@ -sudo: false -language: rust - -matrix: - include: - - rust: stable - env: - - FEATURES="i128" - - rust: beta - env: - - FEATURES="i128" - - rust: nightly - env: - - FEATURES="i128" - - BUILD_BENCH="true" - - rust: 1.0.0 - script: cargo build - - rust: 1.20.0 - script: cargo test - -script: - - cargo build --features "$FEATURES" - - cargo test --features "$FEATURES" - - cargo test --features "$FEATURES" --release - - cargo build --no-default-features --features "$FEATURES" - - cargo test --tests --no-default-features --features "$FEATURES" - - cargo test --tests --no-default-features --features "$FEATURES" --release - - if [ "$BUILD_BENCH" == "true" ]; then cargo bench --no-run --features "$FEATURES"; fi