travis: Add CI job for beta rust version
This commit is contained in:
parent
3090a65446
commit
4beeef080b
1 changed files with 10 additions and 0 deletions
10
.travis.yml
10
.travis.yml
|
@ -45,6 +45,16 @@ matrix:
|
||||||
script:
|
script:
|
||||||
- cargo build --all --all-features -j 1 || exit 1
|
- cargo build --all --all-features -j 1 || exit 1
|
||||||
- cargo test --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:
|
addons:
|
||||||
|
|
Loading…
Reference in a new issue