-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
42 lines (33 loc) · 1.02 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
SHELL = /usr/bin/env bash
# go environment settings
GO ?= $(shell which go 2>/dev/null)
GOLANG_CI ?= $(shell which golangci-lint 2>/dev/null)
GO_TEST_PACKAGES := $(sort $(dir $(shell find . -type f -name '*_test.go')))
# terminal colors
GREEN := $(shell tput -Txterm setaf 2)
YELLOW := $(shell tput -Txterm setaf 3)
WHITE := $(shell tput -Txterm setaf 7)
CYAN := $(shell tput -Txterm setaf 6)
RESET := $(shell tput -Txterm sgr0)
.PHONY: all
all: help
## Coding Style
.PHONY: lint
lint: $(GOLANG_CI) ## lint all code
@$(GOLANG_CI) run
## Testing
.PHONY: test
test: ## run unit tests
@$(GO) test -v -race $(GO_TEST_PACKAGES)
## Help
.PHONY: help
help: ## show this help
@echo ''
@echo 'Usage:'
@echo ' ${YELLOW}make${RESET} ${GREEN}<target>${RESET}'
@echo ''
@echo 'Targets:'
@awk 'BEGIN {FS = ":.*?## "} { \
if (/^[a-zA-Z_-]+:.*?##.*$$/) {printf " ${YELLOW}%-20s${GREEN}%s${RESET}\n", $$1, $$2} \
else if (/^## .*$$/) {printf " ${CYAN}%s${RESET}\n", substr($$1,4)} \
}' $(MAKEFILE_LIST)