15 lines
134 B
Bash
Executable File
15 lines
134 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -x
|
|
|
|
go test ./...
|
|
|
|
cd tests || exit 1
|
|
|
|
for file in *.sh; do
|
|
if [ -d "$file" ]; then
|
|
continue
|
|
fi
|
|
./$file
|
|
done
|