From 8edf5dea2a3f2c5c3a3a13dfa525662ee390e213 Mon Sep 17 00:00:00 2001 From: Dirkjan Ochtman Date: Sun, 4 Nov 2018 22:36:03 +0100 Subject: Use nightly channel --- .travis.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index 09689fc..f796f61 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,12 +2,8 @@ language: rust rust: - stable - beta + - nightly cache: cargo -matrix: - include: - - rust: nightly-2018-08-24 - script: - - cd testing && cargo test --no-default-features --features with-rocket before_script: - rustup component add rustfmt-preview @@ -17,3 +13,6 @@ script: - if [[ "${TRAVIS_RUST_VERSION}" == stable ]]; then cargo fmt -- --check; fi +- if [[ "${TRAVIS_RUST_VERSION}" == nightly ]]; then + cd testing && cargo test --features with-rocket; + fi -- cgit