Skip to content

Commit

Permalink
ci: move copy check to stable
Browse files Browse the repository at this point in the history
Since `scripts/copy-examples` uses `rustfmt`, we want to make sure we
use the stable version to be consistent.
  • Loading branch information
BurntSushi committed Jul 30, 2019
1 parent da50425 commit fcdbea3
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions ci/script.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,10 @@ cargo test --verbose --manifest-path csv-index/Cargo.toml
if [ "$TRAVIS_RUST_VERSION" = "stable" ]; then
rustup component add rustfmt
cargo fmt -- --check
fi
if [ "$TRAVIS_RUST_VERSION" = "nightly" ]; then

ci/check-copy cookbook
ci/check-copy tutorial
fi
if [ "$TRAVIS_RUST_VERSION" = "nightly" ]; then
cargo bench --verbose --no-run
fi

0 comments on commit fcdbea3

Please sign in to comment.