pixels/.travis.yml

23 lines
344 B
YAML
Raw Normal View History

language: rust
dist: bionic
rust:
# MSRV
2020-04-13 16:13:40 +10:00
- 1.40.0
# Stable release channel
- stable
matrix:
fast_finish: true
before_script:
- rustup component add clippy
- rustup component add rustfmt
- sudo apt-get update
- sudo apt-get -y install libsdl2-dev
script:
- cargo clippy --all -- -D warnings
- cargo test --all
- cargo fmt --all -- --check