watchexec/crates/bosion/run-tests.sh

12 lines
150 B
Bash
Raw Normal View History

#!/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