1
0
Fork 0
mirror of https://github.com/romanz/electrs.git synced 2025-02-23 14:50:45 +01:00
electrs/.travis.yml
Roman Zeyde a3c60c93ec
Revert "Test Travis CI on ARM"
This reverts commit ac122d8325.
2019-10-15 10:48:04 +03:00

17 lines
264 B
YAML

language: rust
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