Add Travis build file

Should work?
pull/3/head
Bradlee Speice 2019-09-19 22:33:59 -04:00
parent 0a1e3d689a
commit e6ae0ad1c5
1 changed files with 24 additions and 0 deletions

24
.travis.yml Normal file
View File

@ -0,0 +1,24 @@
language: rust
rust:
- stable
- beta
- nightly
os:
- linux
- osx
- windows
cache:
- cargo
script:
- cd aeron_driver-sys
- cargo test
- cargo test --release
- cargo test --features "static"
- cd ..
- cargo test
- cargo test --release
- cargo fmt --all -- --check
- cargo clippy --all