add travis.yml support

This commit is contained in:
Niko Matsakis 2018-09-30 07:39:52 -04:00
parent 1fef80d659
commit 8770fd796c

7
.travis.yml Normal file
View file

@ -0,0 +1,7 @@
language: rust
rust:
- nightly
script:
- RUST_BACKTRACE=1 CARGO_INCREMENTAL=0 cargo test --all
- RUST_BACKTRACE=1 CARGO_INCREMENTAL=0 cargo test --tests --all
- RUST_BACKTRACE=1 CARGO_INCREMENTAL=0 cargo test --examples --all