mirror of
https://github.com/BurntSushi/walkdir.git
synced 2025-09-30 07:00:37 +00:00
14 lines
237 B
Bash
Executable File
14 lines
237 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -ex
|
|
|
|
cargo doc --verbose
|
|
cargo build --verbose
|
|
cargo test --verbose
|
|
|
|
if [ "$TRAVIS_RUST_VERSION" = "nightly" ]; then
|
|
cargo +nightly generate-lockfile -Z minimal-versions
|
|
cargo build --verbose
|
|
cargo test --verbose
|
|
fi
|