Remove Travis configuration

This commit is contained in:
David Tolnay 2020-05-05 11:29:48 -07:00
parent c899fd6d1d
commit a2c6d4bab3
No known key found for this signature in database
GPG Key ID: F9BA143B95FF6D82
2 changed files with 1 additions and 29 deletions

View File

@ -1,4 +1,4 @@
name: test name: CI
on: on:
push: push:

View File

@ -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