watchexec/crates/bosion/run-tests.sh

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