7844c15a77
* Add gamepad support * Try to fix the build
24 lines
345 B
YAML
24 lines
345 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
|
|
- sudo apt-get update
|
|
- sudo apt-get -y install libudev-dev
|
|
|
|
script:
|
|
- cargo clippy --all -- -D warnings
|
|
- cargo test --all
|
|
- cargo fmt --all -- --check
|