add a couple more Rust versions to CI

This commit is contained in:
Josh Stone 2018-05-07 12:38:56 -07:00
parent bbbc2bd1d7
commit 1af2319201
2 changed files with 3 additions and 1 deletions

View File

@ -1,6 +1,8 @@
language: rust
rust:
- 1.8.0
- 1.15.0
- 1.20.0
- stable
- beta
- nightly

View File

@ -5,7 +5,7 @@
set -ex
export TRAVIS_RUST_VERSION
for TRAVIS_RUST_VERSION in 1.8.0 stable beta nightly; do
for TRAVIS_RUST_VERSION in 1.8.0 1.15.0 1.20.0 stable beta nightly; do
run="rustup run $TRAVIS_RUST_VERSION"
$run $PWD/ci/test_full.sh
done