Test stable support in Travis
This commit is contained in:
parent
0e4123f927
commit
345b844885
14
.travis.yml
14
.travis.yml
|
@ -1,8 +1,14 @@
|
||||||
language: rust
|
language: rust
|
||||||
rust:
|
|
||||||
- nightly
|
|
||||||
cache:
|
cache:
|
||||||
directories:
|
directories:
|
||||||
- /home/travis/.cargo
|
- /home/travis/.cargo
|
||||||
script:
|
|
||||||
- cargo test
|
matrix:
|
||||||
|
include:
|
||||||
|
- rust: nightly
|
||||||
|
script: cargo test
|
||||||
|
- rust: beta
|
||||||
|
script: cargo check --manifest-path examples/wasm/Cargo.toml
|
||||||
|
- rust: stable
|
||||||
|
script: cargo check --manifest-path examples/wasm/Cargo.toml
|
||||||
|
|
Loading…
Reference in New Issue