aeron-rs/.travis.yml

25 lines
318 B
YAML
Raw Normal View History

2019-09-19 22:33:59 -04:00
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