lighthouse/.travis.yml

18 lines
318 B
YAML
Raw Normal View History

2018-07-12 05:04:02 +00:00
language: rust
cache: cargo
2018-12-05 23:05:03 +00:00
script:
- cargo fmt --all -- --check
2018-12-05 23:05:03 +00:00
- cargo build --verbose --all
- cargo test --verbose --all
2018-07-12 05:04:02 +00:00
rust:
- stable
- beta
- nightly
matrix:
allow_failures:
- rust: nightly
fast_finish: true
install:
- (cargo install rustfmt || true)
- PATH=$PATH:/home/travis/.cargo/bin