summaryrefslogtreecommitdiff
path: root/vendor/go.mozilla.org/pkcs7/Makefile
blob: 47c73b8684e813de1edf7a51d640fdded414e12e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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