14 lines
265 B
YAML
14 lines
265 B
YAML
|
language: rust
|
||
|
rust:
|
||
|
- stable
|
||
|
- nightly
|
||
|
- 1.17
|
||
|
matrix:
|
||
|
allow_failures:
|
||
|
- rust: nightly
|
||
|
cache: cargo
|
||
|
script:
|
||
|
- cargo build --verbose --all
|
||
|
- cargo test --verbose --all
|
||
|
- 'if [ $TRAVIS_RUST_VERSION = nightly ]; then cargo bench --verbose --all; fi'
|