Make Travis test against multiple Rust versions, including Rust 1.25.

This commit is contained in:
Nick Alexander 2018-06-13 09:35:41 -07:00 committed by Nick Alexander
parent 6a1a265894
commit 8cc0e5a64e

View file

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