Add initial .travis.yml to project.

This commit is contained in:
Fletcher Nichol 2015-09-22 09:41:12 -06:00
parent e65056d86b
commit 598ede2974
1 changed files with 15 additions and 0 deletions

15
.travis.yml Normal file
View File

@ -0,0 +1,15 @@
language: rust
rust:
- stable
- beta
- nightly
matrix:
allow_failures:
- rust: nightly
script:
- cargo build --verbose
- cargo test --verbose
- (cd cli && cargo build --verbose)