mirror of
https://github.com/geektutu/7days-golang.git
synced 2024-04-21 12:32:11 +00:00
10 lines
150 B
Bash
Executable File
10 lines
150 B
Bash
Executable File
#!/bin/bash
|
|
set -eou pipefail
|
|
|
|
cur=$PWD
|
|
for item in "$cur"/day*/
|
|
do
|
|
echo "$item"
|
|
cd "$item"
|
|
go test geeorm/... 2>&1 | grep -v warning
|
|
done |