walkdir/ci/script.sh
Andrew Gallant 526d70b165 list: add new walkdir-list binary
This supplants the previous "example" which was more like a debugging
program. So this commit not only rewrites it (dropping docopt in the
process in favor of clap), but moves it to its own non-published binary
crate.
2019-07-20 13:37:00 -04:00

17 lines
261 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 build --verbose --all
cargo doc --verbose
cargo test --verbose