mirror of
https://github.com/BurntSushi/walkdir.git
synced 2025-09-30 07:00:37 +00:00
16 lines
233 B
Bash
Executable File
16 lines
233 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -ex
|
|
|
|
MSRV="1.23.0"
|
|
|
|
cargo build --verbose
|
|
|
|
# Give up testing on MSRV since our dev-dependencies no longer support it.
|
|
if [ "$TRAVIS_RUST_VERSION" = "$MSRV" ]; then
|
|
exit
|
|
fi
|
|
|
|
cargo doc --verbose
|
|
cargo test --verbose
|