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

24 lines
335 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-07-20 23:13:32 +02:00
env: CARGO_INCREMENTAL=0
2018-07-16 12:36:49 +03:00
cache:
cargo: true
timeout: 450
2018-07-22 00:31:13 +02:00
stages:
- lint
- test
2018-07-16 12:36:49 +03:00
2018-07-22 00:31:13 +02:00
jobs:
include:
- stage: test
script:
- cargo build
- cargo test
- stage: lint
before_script:
- rustup component add rustfmt-preview
script:
- cargo fmt --all -- --check