watchexec/ci/script.sh
Félix Saparelli e54b7f2427
Remove appveyor
2019-10-28 13:11:33 +13:00

11 lines
217 B
Bash
Executable File

#!/usr/bin/env bash
if [[ ! -z "$CARGO_AUDIT" ]]; then
cargo check --target $TARGET
cargo audit
elif [[ ! -z "$CARGO_CLIPPY" ]]; then
cargo clippy --target $TARGET
else
cargo test --target $TARGET
fi