10 lines
171 B
Bash
10 lines
171 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
#GOPATH=/go
|
||
|
#PATH=${GOPATH}/bin:/usr/local/go/bin:${PATH}
|
||
|
|
||
|
go vet ./...
|
||
|
golint -set_exit_status ./...
|
||
|
staticcheck ./...
|
||
|
gocyclo -over 10 .
|
||
|
go test -cover ./...
|