-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
33 lines (24 loc) · 1.01 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
.PHONY: build help bootstrap godoc
.DEFAULT_GOAL := help
EXTERNAL_TOOLS := \
github.com/golangci/golangci-lint/cmd/[email protected] \
golang.org/x/pkgsite/cmd/pkgsite@latest # latest は go 1.19 以上が必要: https://github.com/golang/pkgsite#requirements
help: ## https://postd.cc/auto-documented-makefile/
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | \
awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
bootstrap: ## 外部ツールをインストールする。
for t in $(EXTERNAL_TOOLS); do \
echo "Installing $$t ..." ; \
go install $$t ; \
done
godoc: ## godoc をローカルで表示する。http://localhost:8080/{module_name}
pkgsite
.PHONY: lint serve
lint: ## golangci を使って lint を走らせる
golangci-lint run -v
lint-fix: ## lint 実行時, gofumpt のエラーが出たらやると良い
golangci-lint run --fix
serve: ## サーバーを起動する
go run main.go
test: ## 全テストを実行
go test -cover -shuffle=on ./... -v