monolith/.travis.yml

27 lines
356 B
YAML
Raw Normal View History

2019-08-24 18:17:52 +02:00
language: rust
cache: cargo
sudo: false
os:
- linux
- osx
rust:
- stable
- beta
2019-08-24 18:17:52 +02:00
- nightly
before_script:
- rustup component add rustfmt
2019-08-24 18:17:52 +02:00
script:
2019-12-12 03:13:11 +01:00
- cargo build --all --locked --verbose
- cargo test --all --locked --verbose
- cargo fmt --all -- --check
jobs:
allow_failures:
- rust: nightly
fast_finish: true