blockstream-electrs/.travis.yml

16 lines
209 B
YAML
Raw Normal View History

2018-05-09 20:21:22 +00:00
language: rust
2018-07-16 09:36:49 +00:00
2018-09-27 16:50:57 +00:00
rust:
- stable
2018-07-20 21:13:32 +00:00
2018-09-27 16:50:57 +00:00
cache: cargo
2018-07-16 09:36:49 +00:00
2018-09-28 08:21:08 +00:00
before_script:
- rustup component add rustfmt-preview
2018-09-27 16:50:57 +00:00
script:
2018-09-28 08:21:08 +00:00
- cargo fmt --all -- --check
2018-09-27 16:50:57 +00:00
- cargo check --all
2018-09-28 08:11:35 +00:00
- cargo build --all
- cargo test --all