Make Travis test against multiple Rust versions, including Rust 1.25.
This commit is contained in:
parent
6a1a265894
commit
8cc0e5a64e
1 changed files with 10 additions and 0 deletions
10
.travis.yml
10
.travis.yml
|
@ -1,3 +1,13 @@
|
|||
language: rust
|
||||
rust:
|
||||
- 1.25.0 # Must align with `build/version.rs`.
|
||||
- stable
|
||||
- beta
|
||||
- nightly
|
||||
matrix:
|
||||
allow_failures:
|
||||
- rust: nightly
|
||||
fast_finish: true
|
||||
script:
|
||||
- cargo test --verbose --all
|
||||
cache: cargo
|
||||
|
|
Loading…
Reference in a new issue