1
0
mirror of https://github.com/bspeice/aeron-rs synced 2024-12-21 21:38:09 -05:00

Add Travis build file

Should work?
This commit is contained in:
Bradlee Speice 2019-09-19 22:33:59 -04:00
parent 0a1e3d689a
commit e6ae0ad1c5

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