mirror of
https://github.com/alacritty/alacritty.git
synced 2024-11-18 13:55:23 -05:00
f50ca1a54c
There were some unneeded codeblocks and TODO/XXX comments in the code that have been removed. All issues marked with TODO/XXX have either been already resolved or tracking issues exist.
33 lines
493 B
YAML
33 lines
493 B
YAML
language: rust
|
|
sudo: false
|
|
|
|
cache: cargo
|
|
|
|
os:
|
|
- linux
|
|
- osx
|
|
|
|
rust:
|
|
- stable
|
|
- nightly
|
|
|
|
env:
|
|
- CLIPPY="true"
|
|
- CLIPPY=""
|
|
|
|
install:
|
|
- if [ -n "$CLIPPY" ]; then cargo install -f clippy; fi
|
|
|
|
matrix:
|
|
fast_finish: true
|
|
exclude:
|
|
- rust: stable
|
|
env: CLIPPY="true"
|
|
- rust: nightly
|
|
env: CLIPPY=""
|
|
allow_failures:
|
|
- rust: nightly
|
|
|
|
script:
|
|
- if [ -n "$CLIPPY" ]; then cargo clippy --all-features --all-targets; fi
|
|
- if [ -z "$CLIPPY" ]; then cargo test; fi
|