mirror of
https://github.com/alacritty/alacritty.git
synced 2024-11-03 04:34:21 -05:00
2920cbe710
This commit adds clippy as a required step of the build process. To make this possible, all existing clippy issues have been resolved.
29 lines
376 B
YAML
29 lines
376 B
YAML
language: rust
|
|
sudo: false
|
|
|
|
cache: cargo
|
|
|
|
os:
|
|
- linux
|
|
- osx
|
|
|
|
rust:
|
|
- stable
|
|
- nightly
|
|
|
|
env:
|
|
- FEATURES="clippy"
|
|
- FEATURES=""
|
|
|
|
matrix:
|
|
fast_finish: true
|
|
exclude:
|
|
- rust: stable
|
|
env: FEATURES="clippy"
|
|
- rust: nightly
|
|
env: FEATURES=""
|
|
allow_failures:
|
|
- rust: nightly
|
|
|
|
script:
|
|
- cargo test --no-default-features --features "$FEATURES"
|