-
Notifications
You must be signed in to change notification settings - Fork 53
/
Makefile
33 lines (25 loc) · 920 Bytes
/
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
FILES_TO_FMT ?= $(shell find . -path ./vendor -prune -o -name '*.go' -print)
.PHONY: help
help: ## Print a short help message
@grep -hE '^[a-zA-Z_-]+:[^:]*?## .*$$' $(MAKEFILE_LIST) | \
awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-18s\033[0m %s\n", $$1, $$2}'
.PHONY: format
format: ## Formats all Go code
@echo ">> formatting code"
@gofmt -s -w $(FILES_TO_FMT)
.PHONY: lint
lint: ## Runs golangci-lint on source files
golangci-lint run
.PHONY: coverage.out
coverage.out: $(wildcard go.*) $(wildcard **/*.go)
go test -race -covermode=atomic -coverprofile=$@ ./...
coverage.html: coverage.out
go tool cover -html $< -o $@
.PHONY: test
test: coverage.out ## Run all Go tests (excluding integration tests)
.PHONY: integration
integration: ## Run Go tests (integration tests only)
go test -race -tags=integration -covermode=atomic -coverprofile=coverage.out ./...
.PHONY: clean
clean:
rm -rf coverage.*