pixels/.travis.yml

22 lines
273 B
YAML
Raw Normal View History

language: rust
rust:
# MSRV
- 1.36.0
# Stable release channel
- stable
cache: cargo
matrix:
fast_finish: true
before_script:
- rustup component add clippy
- rustup component add rustfmt
script:
- cargo clippy -- -D warnings
- cargo test
- cargo fmt --all -- --check