blockstream-electrs/.travis.yml
Roman Zeyde 253e244a86
Fix cargo fmt for Travis
Stable Rust doesn't support `cargo fmt --check` (yet).
2018-07-14 13:02:28 +03:00

11 lines
202 B
YAML

language: rust
cache: cargo
rust:
- stable
before_script:
- rustup component add rustfmt-preview
script:
- cargo fmt --all -- --write-mode=check
- cargo build --verbose
- cargo test --verbose