mirror of
https://github.com/watchexec/watchexec.git
synced 2024-11-14 00:01:12 +01:00
11 lines
150 B
Bash
Executable file
11 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
|