https://github.com/containerd/imgcrypt/compare/v1.2.0-rc1...v2.0.0-rc.1 Signed-off-by: Akihiro Suda <akihiro.suda.cz@hco.ntt.co.jp>
21 lines
301 B
Makefile
21 lines
301 B
Makefile
all: vet staticcheck test
|
|
|
|
test:
|
|
go test -race -covermode=atomic -count=1 -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
|