7 lines
64 B
Bash
7 lines
64 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
set -e
|
||
|
|
||
|
go test ./pkg/...
|
||
|
go vet ./pkg/...
|