8 lines
86 B
Bash
Executable file
8 lines
86 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
for pkg in $(go list ./...); do
|
|
go test -cover $pkg;
|
|
done
|
|
|