pixels/.travis.yml
Jay Oster 63369b8fe0 Fix CI
- `--workspace` is a nightly-only arg
2019-10-06 02:41:41 -07:00

22 lines
285 B
YAML

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 --all -- -D warnings
- cargo test --all
- cargo fmt --all -- --check