mirror of
https://github.com/k3s-io/k3s.git
synced 2024-06-07 19:41:36 +00:00
b352d73511
Signed-off-by: Brad Davidson <brad.davidson@rancher.com>
21 lines
285 B
Makefile
21 lines
285 B
Makefile
all: vet staticcheck test
|
|
|
|
test:
|
|
go test -covermode=count -coverprofile=coverage.out .
|
|
|
|
showcoverage: test
|
|
go tool cover -html=coverage.out
|
|
|
|
vet:
|
|
go vet .
|
|
|
|
lint:
|
|
golint .
|
|
|
|
staticcheck:
|
|
staticcheck .
|
|
|
|
gettools:
|
|
go get -u honnef.co/go/tools/...
|
|
go get -u golang.org/x/lint/golint
|