mirror of
https://github.com/crate-ci/typos.git
synced 2024-11-22 00:51:11 -05:00
chore(CI): Update for workspaces
This commit is contained in:
parent
1bdd1c928a
commit
5b635a1a87
2 changed files with 8 additions and 8 deletions
12
.travis.yml
12
.travis.yml
|
@ -11,22 +11,22 @@ matrix:
|
||||||
install:
|
install:
|
||||||
- rustup component add rustfmt
|
- rustup component add rustfmt
|
||||||
script:
|
script:
|
||||||
- cargo fmt -- --check
|
- cargo fmt --all -- --check
|
||||||
- env: RUSTFLAGS="-D warnings"
|
- env: RUSTFLAGS="-D warnings"
|
||||||
rust: 1.35.0 # `stable`: Locking down for consistent behavior
|
rust: 1.35.0 # `stable`: Locking down for consistent behavior
|
||||||
install:
|
install:
|
||||||
script:
|
script:
|
||||||
- cargo check --tests
|
- cargo check --tests --all
|
||||||
- env: CLIPPY
|
- env: CLIPPY
|
||||||
rust: 1.35.0 # `stable`: Locking down for consistent behavior
|
rust: 1.35.0 # `stable`: Locking down for consistent behavior
|
||||||
install:
|
install:
|
||||||
- rustup component add clippy
|
- rustup component add clippy
|
||||||
script:
|
script:
|
||||||
- cargo clippy --all-features
|
- cargo clippy --all-features --all
|
||||||
- env: BENCH
|
- env: BENCH
|
||||||
rust: nightly
|
rust: nightly
|
||||||
script:
|
script:
|
||||||
- cargo bench
|
- cargo bench --all
|
||||||
|
|
||||||
install:
|
install:
|
||||||
- rustc -Vv
|
- rustc -Vv
|
||||||
|
@ -34,8 +34,8 @@ install:
|
||||||
- export PATH=$HOME/.cargo/bin:$PATH
|
- export PATH=$HOME/.cargo/bin:$PATH
|
||||||
|
|
||||||
script:
|
script:
|
||||||
- cargo check --verbose
|
- cargo check --verbose --all
|
||||||
- cargo test --verbose
|
- cargo test --verbose --all
|
||||||
|
|
||||||
branches:
|
branches:
|
||||||
only:
|
only:
|
||||||
|
|
|
@ -26,8 +26,8 @@ install:
|
||||||
- cargo -V
|
- cargo -V
|
||||||
|
|
||||||
test_script:
|
test_script:
|
||||||
- cargo check --verbose
|
- cargo check --verbose --all
|
||||||
- cargo test --verbose
|
- cargo test --verbose --all
|
||||||
|
|
||||||
branches:
|
branches:
|
||||||
only:
|
only:
|
||||||
|
|
Loading…
Reference in a new issue