1
0
Fork 0
mirror of https://github.com/romanz/electrs.git synced 2025-02-24 06:57:53 +01:00
electrs/.travis.yml

18 lines
264 B
YAML
Raw Normal View History

2018-05-09 23:21:22 +03:00
language: rust
2018-07-16 12:36:49 +03:00
2018-09-27 19:50:57 +03:00
rust:
- stable
2018-07-20 23:13:32 +02:00
2018-09-27 19:50:57 +03:00
cache: cargo
2018-07-16 12:36:49 +03:00
2018-09-28 11:21:08 +03:00
before_script:
- rustup component add rustfmt-preview
2019-03-25 20:37:24 +02:00
- rustup component add clippy
2018-09-28 11:21:08 +03:00
2018-09-27 19:50:57 +03:00
script:
2018-09-28 11:21:08 +03:00
- cargo fmt --all -- --check
2018-09-27 19:50:57 +03:00
- cargo check --all
2019-03-08 18:38:22 +02:00
- cargo clippy --all
2018-09-28 11:11:35 +03:00
- cargo build --all
- cargo test --all