pixels/.travis.yml
Jay Oster 8dc33fcf4e
Enable clippy in CI (#2)
* Enable clippy in CI

- Removed beta and nightly channels to prevent build breakage
- Fixed some lints noted by `pedantic` and `nursery` level (but not denying these levels by default)
2019-10-04 21:35:00 -07:00

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