diff options
author | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2018-11-04 22:36:03 +0100 |
---|---|---|
committer | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2018-11-04 22:36:03 +0100 |
commit | 8edf5dea2a3f2c5c3a3a13dfa525662ee390e213 (patch) | |
tree | 0964219625a9502e0252273be5447d34f37f3f01 | |
parent | 82a406df795e2645c83d9ec0974f1f0421337d9b (diff) | |
download | askama-8edf5dea2a3f2c5c3a3a13dfa525662ee390e213.tar.gz askama-8edf5dea2a3f2c5c3a3a13dfa525662ee390e213.tar.bz2 askama-8edf5dea2a3f2c5c3a3a13dfa525662ee390e213.zip |
Use nightly channel
-rw-r--r-- | .travis.yml | 9 |
1 files 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 |