mirror of
https://github.com/bspeice/aeron-rs
synced 2024-11-12 11:08:08 -05:00
28 lines
396 B
YAML
28 lines
396 B
YAML
language: rust
|
|
rust:
|
|
- stable
|
|
os:
|
|
- linux
|
|
- osx
|
|
- windows
|
|
|
|
cache:
|
|
- cargo
|
|
|
|
before_script:
|
|
- rustup update
|
|
- rustup component add clippy
|
|
- rustup component add rustfmt
|
|
|
|
script:
|
|
- cd aeron_driver-sys
|
|
- cargo test
|
|
- cargo test --release
|
|
- cargo test --features "static"
|
|
|
|
- cd ..
|
|
- cargo test
|
|
- cargo test --release
|
|
- cargo clippy --all
|
|
- cargo fmt --all -- --check
|