-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
59 lines (46 loc) · 1.52 KB
/
Copy pathMakefile
File metadata and controls
59 lines (46 loc) · 1.52 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
.DEFAULT_GOAL := build
# Go variables
GO ?= go
GO_RELEASER ?= $(GO_TOOL) github.com/goreleaser/goreleaser/v2
GO_LINT ?= $(GO_TOOL) github.com/golangci/golangci-lint/v2/cmd/golangci-lint
GO_TOOL ?= $(GO) tool
GO_TEST ?= $(GO_TOOL) gotest.tools/gotestsum --format pkgname
.PHONY: build
build: ## Build the binary file.
$(GO_RELEASER) build --snapshot --clean
.PHONY: release
release: ## Release the project.
$(GO_RELEASER) release --clean
.PHONY: generate
generate: ## Generate code.
$(GO) generate ./...
.PHONY: mocks
mocks: ## Generate mocks.
$(GO_TOOL) github.com/vektra/mockery/v2
.PHONY: dex
dex: ## Generate mocks.
$(GO_TOOL) github.com/dexidp/dex/cmd/dex serve dex-dev.yml
.PHONY: fmt
fmt: ## Run go fmt against code.
$(GO_TOOL) mvdan.cc/gofumpt -w .
.PHONY: vet
vet: ## Run go vet against code.
$(GO) vet ./...
.PHONY: test
test: fmt vet ## Run tests.
mkdir -p .test/reports
$(GO_TEST) --junitfile .test/reports/unit-test.xml -- -race ./... -count=1 -short -cover -coverprofile .test/reports/unit-test-coverage.out
.PHONY: lint
lint: ## Run lint.
$(GO_LINT) run --timeout 5m -c .golangci.yml
.PHONY: fix
fix: ## Run lint auto-fixes.
$(GO_LINT) run --fix --timeout 5m -c .golangci.yml
.PHONY: clean
clean: ## Remove previous build.
@rm -rf .test .dist
@find . -type f -name '*.gen.go' -exec rm {} +
@git checkout go.mod
.PHONY: help
help: ## Display this help screen.
@grep -E '^[a-z.A-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'