pixels/.travis.yml
Jay Oster 755b1fed28
Add environment variable overrides for wgpu::PowerPreference (#94)
* Add environment variable overrides for `wgpu::PowerPreference`

* Bump MSRV
2020-07-17 17:31:16 -07:00

23 lines
344 B
YAML

language: rust
dist: bionic
rust:
# MSRV
- 1.41.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