1
0
mirror of https://github.com/romanz/electrs.git synced 2024-11-19 09:54:09 +01:00
electrs/.travis.yml
2019-10-15 10:42:30 +03:00

22 lines
291 B
YAML

language: rust
arch:
- amd64
- arm64
rust:
- stable
cache: cargo
before_script:
- rustup component add rustfmt-preview
- rustup component add clippy
script:
- cargo fmt --all -- --check
- cargo check --all
- cargo clippy --all
- cargo build --all
- cargo test --all