-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
50 lines (37 loc) · 1.05 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
42
43
44
45
46
47
48
49
50
.PHONY: help check cover test tidy vet run
ROOT := $(PWD)
GO_HTML_COV := ./coverage.html
GO_TEST_OUTFILE := ./c.out
GO_DOCKER_IMAGE := golang:1.17
GO_DOCKER_CONTAINER := meteo-container
define PRINT_HELP_PYSCRIPT
import re, sys
for line in sys.stdin:
match = re.match(r'^([a-zA-Z_-]+):.*?## (.*)$$', line)
if match:
target, help = match.groups()
print("%-20s %s" % (target, help))
endef
export PRINT_HELP_PYSCRIPT
default: help
help:
@python -c "$$PRINT_HELP_PYSCRIPT" < $(MAKEFILE_LIST)
vet: ## Run go vet and shadow
go vet ./...
shadow ./...
check: ## Run static check analyzer
staticcheck ./...
cover: ## Run unit tests and generate test coverage report
go test -shuffle=on -race -v ./... -count=1 -cover -covermode=atomic -coverprofile=coverage.out
go tool cover -html coverage.out
staticcheck ./...
test: vet ## Run unit tests locally
go test -shuffle=on -race -v ./...
staticcheck ./...
# MODULES
tidy: ## Run go mod tidy and vendor
go mod tidy
go mod vendor
# DEVELOPMENT
run: ## Run service locally
go run cmd/spacewatch-api/main.go