Files
lighthouse/.travis.yml
2019-01-10 14:59:15 -06:00

18 lines
318 B
YAML

language: rust
cache: cargo
script:
- cargo fmt --all -- --check
- cargo build --verbose --all
- cargo test --verbose --all
rust:
- stable
- beta
- nightly
matrix:
allow_failures:
- rust: nightly
fast_finish: true
install:
- (cargo install rustfmt || true)
- PATH=$PATH:/home/travis/.cargo/bin