watchexec/crates/bosion/run-tests.sh
2023-03-05 03:26:23 +00:00

12 lines
150 B
Bash
Executable File

#!/bin/bash
set -euo pipefail
for test in default no-git no-std; do
echo "Testing $test"
pushd examples/$test
cargo check
cargo test
popd
done