加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Makefile 918 Bytes
一键复制 编辑 原始数据 按行查看 历史
linktimecloud 提交于 2024-03-31 01:10 . Feat:initial commit
include makefiles/const.mk
include makefiles/build.mk
include makefiles/dependency.mk
##@ General
.PHONY: help
help: ## Display this help.
@awk 'BEGIN {FS = ":.*##"; printf "\nUsage:\n make \033[36m<target>\033[0m\n"} /^[a-zA-Z_0-9-]+:.*?##/ { printf " \033[36m%-15s\033[0m %s\n", $$1, $$2 } /^##@/ { printf "\n\033[1m%s\033[0m\n", substr($$0, 5) } ' $(MAKEFILE_LIST)
.DEFAULT_GOAL := help
##@ Test
## test: Run tests
test: cli-gen-test
@$(OK)
cli-gen-test: ## Run CLI tests
go test $(shell go list ./...) -coverprofile coverage.out && go tool cover -func=coverage.out
.PHONY: lint
lint: golang-ci ## Run golangci-lint.
@$(INFO) lint
@$(GOLANG_CI_LINT) run --timeout 5m
.PHONY: vet
vet: ## Run go vet against code.
@$(INFO) go vet
@go vet $(shell go list ./...)
.PHONY: static-check
static-check: golang-static-check ## Run static-check.
@$(INFO) staticcheck
@$(STATIC_CHECK) $(shell go list ./...)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化