walkdir/ci/script.sh
Andrew Gallant b0809eee88
ci: remove minimal version check
Because rand. Sigh.
2019-06-09 09:27:36 -04:00

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