vhost/.travis.yml
2019-04-03 14:38:29 +08:00

14 lines
256 B
YAML

language: rust
rust:
- stable
before_script:
- rustup component add clippy
- rustup component add rustfmt
script:
- cargo build --release
- cargo test
- cargo clippy --all-targets --all-features -- -D warnings
- cargo fmt --all -- --check