act/.github/actions/check/entrypoint.sh

10 lines
171 B
Bash
Raw Normal View History

#!/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 ./...