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

24 lines
346 B
YAML
Raw Normal View History

2018-05-09 22:21:22 +02:00
language: rust
2018-07-16 11:36:49 +02:00
2018-07-20 23:13:32 +02:00
env: CARGO_INCREMENTAL=0
2018-07-16 11:36:49 +02:00
cache:
cargo: true
timeout: 450
2018-07-22 00:31:13 +02:00
stages:
- lint
- test
2018-07-16 11:36:49 +02: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 -- --write-mode=check