mirror of
https://github.com/ratatui-org/ratatui
synced 2024-11-14 17:07:13 +00:00
21 lines
295 B
YAML
21 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
|