mirror of
https://github.com/fdehau/tui-rs.git
synced 2024-10-30 21:20:22 +00:00
22 lines
295 B
YAML
22 lines
295 B
YAML
language: rust
|
|
|
|
rust:
|
|
- stable
|
|
- beta
|
|
- nightly
|
|
|
|
cache: cargo
|
|
|
|
matrix:
|
|
fast_finish: true
|
|
allow_failures:
|
|
- rust: nightly
|
|
|
|
before_script:
|
|
- rustup component add rustfmt-preview
|
|
|
|
script:
|
|
- if [ "$TRAVIS_RUST_VERSION" == "stable" ]; then make fmt; fi
|
|
- make build
|
|
- make test
|