goc/Makefile

13 lines
178 B
Makefile
Raw Normal View History

2020-07-10 02:20:43 +00:00
DEFAULT_EXCEPT_PKGS := e2e
all:
go install ./...
test:
go test -cover -p 1 `go list ./... | grep -v -E ${DEFAULT_EXCEPT_PKGS}`
fmt:
go fmt ./...
govet-check:
go vet ./...