-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
41 lines (30 loc) · 1.25 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
PACKAGES_UNIT=$(shell go list ./...)
BUILDDIR ?= $(CURDIR)/build
$(BUILDDIR)/:
mkdir -p $(BUILDDIR)/
#############################################################################
### Lint, Tests ###
#############################################################################
golangci_lint_cmd=golangci-lint
golangci_version=v1.54.2
lint:
GOBIN=$(BUILDDIR) go install github.com/golangci/golangci-lint/cmd/golangci-lint@$(golangci_version)
$(BUILDDIR)/$(golangci_lint_cmd) run --timeout=10m --out-format=tab
test:
go test -mod=readonly -timeout=15m -coverprofile=coverage.txt -covermode=atomic $(PACKAGES_UNIT)
go tool cover -html=coverage.txt -o coverage.html
go tool cover -func=coverage.txt
vulncheck: $(BUILDDIR)/
GOBIN=$(BUILDDIR) go install golang.org/x/vuln/cmd/govulncheck@latest
$(BUILDDIR)/govulncheck ./...
build: $(BUILDDIR)/
go build -o $(BUILDDIR)
install:
go install
###########################################################################
### Releasing ###
###########################################################################
release-dry-run:
goreleaser release --snapshot --clean
release:
goreleaser release --clean