alacritty/.travis.yml

30 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"