mirror of
https://github.com/watchexec/watchexec.git
synced 2024-11-16 09:08:37 +01:00
12 lines
150 B
Bash
12 lines
150 B
Bash
|
#!/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
|