Fix .travis.yml that was failing to parse

This commit is contained in:
David Tolnay 2018-10-13 19:59:41 -07:00
parent caec2745c6
commit 0e4d65d9eb
No known key found for this signature in database
GPG Key ID: F9BA143B95FF6D82
1 changed files with 2 additions and 1 deletions

View File

@ -4,8 +4,10 @@ language: rust
matrix:
include:
- rust: stable
env:
- FEATURES="i128"
- rust: beta
env:
- FEATURES="i128"
- rust: nightly
env:
@ -22,4 +24,3 @@ script:
- cargo build --verbose --no-default-features --features "$FEATURES"
- cargo test --verbose --no-default-features --features "$FEATURES"
- if [ "$BUILD_BENCH" == "true" ]; then cargo bench --verbose --no-run --features "$FEATURES"; fi