6 lines
89 B
Bash
Executable File
6 lines
89 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
for pkg in $(go list ./... ); do
|
|
echo "$pkg"
|
|
go test "$pkg"
|
|
done |