mirror of
https://github.com/crate-ci/typos.git
synced 2024-11-22 00:51:11 -05:00
59 lines
1.2 KiB
YAML
59 lines
1.2 KiB
YAML
sudo: false
|
|
language: rust
|
|
rust:
|
|
- stable
|
|
- beta
|
|
- nightly
|
|
matrix:
|
|
include:
|
|
- env: RUSTFMT
|
|
rust: 1.35.0 # `stable`: Locking down for consistent behavior
|
|
install:
|
|
- rustup component add rustfmt
|
|
script:
|
|
- cargo fmt --all -- --check
|
|
- env: RUSTFLAGS="-D warnings"
|
|
rust: 1.35.0 # `stable`: Locking down for consistent behavior
|
|
install:
|
|
script:
|
|
- cargo check --tests --all
|
|
- env: CLIPPY
|
|
rust: 1.35.0 # `stable`: Locking down for consistent behavior
|
|
install:
|
|
- rustup component add clippy
|
|
script:
|
|
- cargo clippy --all-features --all
|
|
- env: BENCH
|
|
rust: nightly
|
|
script:
|
|
- cargo bench --all
|
|
|
|
install:
|
|
- rustc -Vv
|
|
- cargo -V
|
|
- export PATH=$HOME/.cargo/bin:$PATH
|
|
|
|
script:
|
|
- cargo check --verbose --all
|
|
- cargo test --verbose --all
|
|
|
|
branches:
|
|
only:
|
|
# Release tags
|
|
- /^v\d+\.\d+\.\d+.*$/
|
|
- master
|
|
|
|
# Need to cache the whole `.cargo` directory to keep .crates.toml for
|
|
# cargo-update to work
|
|
cache:
|
|
directories:
|
|
- /home/travis/.cargo
|
|
# But don't cache the cargo registry
|
|
before_cache:
|
|
- rm -rf $HOME/.cargo/registry
|
|
# Travis can't cache files that are not readable by "others"
|
|
- chmod -R a+r $HOME/.cargo
|
|
|
|
notifications:
|
|
email:
|
|
on_success: never
|