2018-06-13 20:31:17 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
|
2019-06-07 09:36:14 +00:00
|
|
|
export GO111MODULE=on
|
2018-06-13 20:31:17 +00:00
|
|
|
|
2019-06-07 09:36:14 +00:00
|
|
|
bash -c "umask 0; go test -v -covermode=count -coverprofile=coverage.out ./..."
|
2018-06-13 20:31:17 +00:00
|
|
|
|