summaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2018-10-12 14:57:01 +0200
committerMatthias Beyer <mail@beyermatthias.de>2018-10-12 14:57:01 +0200
commit4beeef080b4e07eaa1ee3bd3b9f918e425996142 (patch)
tree4f48daf77f82e1258bcf17bb6b1af9b4a40188e1 /.travis.yml
parent3090a65446bcd3153806403a9ed1e73e87f37e57 (diff)
travis: Add CI job for beta rust version
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml10
1 files changed, 10 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
index 3d4aa4b0..5b0a0af3 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -45,6 +45,16 @@ matrix:
script:
- cargo build --all --all-features -j 1 || exit 1
- cargo test --all --all-features -j 1 || exit 1
+ - language: rust
+ rust: beta
+ cache:
+ directories:
+ - /home/travis/.cargo
+ before_cache:
+ - rm -rf /home/travis/.cargo/registry
+ script:
+ - cargo build --all --all-features -j 1 || exit 1
+ - cargo test --all --all-features -j 1 || exit 1
addons: