Skip to content

Commit

Permalink
chore(CI): Update for workspaces
Browse files Browse the repository at this point in the history
  • Loading branch information
epage committed Aug 10, 2019
1 parent 1bdd1c9 commit 5b635a1
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,31 +11,31 @@ matrix:
install:
- rustup component add rustfmt
script:
- cargo fmt -- --check
- cargo fmt --all -- --check
- env: RUSTFLAGS="-D warnings"
rust: 1.35.0 # `stable`: Locking down for consistent behavior
install:
script:
- cargo check --tests
- 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
- cargo clippy --all-features --all
- env: BENCH
rust: nightly
script:
- cargo bench
- cargo bench --all

install:
- rustc -Vv
- cargo -V
- export PATH=$HOME/.cargo/bin:$PATH

script:
- cargo check --verbose
- cargo test --verbose
- cargo check --verbose --all
- cargo test --verbose --all

branches:
only:
Expand Down
4 changes: 2 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ install:
- cargo -V

test_script:
- cargo check --verbose
- cargo test --verbose
- cargo check --verbose --all
- cargo test --verbose --all

branches:
only:
Expand Down

0 comments on commit 5b635a1

Please sign in to comment.