Files
2026-08-06 17:16:54 +02:00

184 lines
4.8 KiB
Makefile

.DEFAULT_GOAL:=help
-include .makerc
# --- Config -----------------------------------------------------------------
GOMODS=$(shell find . -type f -name go.mod)
# Newline hack for error output
define br
endef
# --- Targets -----------------------------------------------------------------
# This allows us to accept extra arguments
%: .mise .lefthook go.work
@:
.PHONY: .mise
# Install dependencies
.mise:
ifeq (, $(shell command -v mise))
$(error $(br)$(br)Please ensure you have 'mise' installed and activated!$(br)$(br) $$ brew update$(br) $$ brew install mise$(br)$(br)See the documentation: https://mise.jdx.dev/getting-started.html)
endif
@mise install
.PHONY: .lefthook
# Configure git hooks for lefthook
.lefthook:
@lefthook install --reset-hooks-path
# Ensure go.work file
go.work:
@echo "〉initializing go work"
@go work init && go work use -r . && go work sync
### Tasks
.PHONY: check
## Run lint & tests
check: tidy generate lint.fix test audit
.PHONY: lint
## Run linter
lint:
@echo "〉golangci-lint run"
@$(foreach mod,$(GOMODS), (cd $(dir $(mod)) && echo "📂 $(dir $(mod))" && golangci-lint run) &&) true
.PHONY: lint.fix
## Run golangci-lint & fix
lint.fix:
@echo "〉golangci-lint run fix"
@$(foreach mod,$(GOMODS), (cd $(dir $(mod)) && echo "📂 $(dir $(mod))" && golangci-lint run --fix) &&) true
.PHONY: generate
## Run go generate
generate:
@echo "〉go generate"
@go generate work
.PHONY: test
## Run tests
test:
@echo "〉go test"
@GO_TEST_TAGS=-skip go test -tags=safe -shuffle=on -coverprofile=coverage.out work
.PHONY: test.race
## Run tests with -race
test.race:
@echo "〉go test with -race"
@GO_TEST_TAGS=-skip go test -tags=safe -shuffle=on -coverprofile=coverage.out -race work
.PHONY: test.update
## Run tests with -update
test.update:
@echo "〉go test with -update"
@GO_TEST_TAGS=-skip go test -tags=safe --shuffle=on coverprofile=coverage.out -update work
.PHONY: test.bench
## Run tests with -bench
test.bench:
@echo "〉go bench"
@GO_TEST_TAGS=-skip go test -tags=safe -bench=. -benchmem work
### Security
.PHONY: audit
## Run security audit
audit:
@echo "〉security audit"
@$(foreach mod,$(GOMODS), (cd $(dir $(mod)) && echo "📂 $(dir $(mod))" && govulncheck ./...) &&) true
### Dependencies
.PHONY: tidy
## Run go mod tidy
tidy:
@echo "〉go mod tidy"
@$(foreach mod,$(GOMODS), (cd $(dir $(mod)) && echo "📂 $(dir $(mod))" && go mod tidy) &&) true
@go work use -r . && go work sync
.PHONY: outdated
## Show outdated direct dependencies
outdated:
@echo "〉go mod outdated"
@$(foreach mod,$(GOMODS),(cd $(dir $(mod)) && echo "📂 $(dir $(mod))" && GOWORK=off go-mod-upgrade --list) &&) true
.PHONY: upgrade
## Upgrade direct dependencies
upgrade:
@echo "〉go mod upgrade"
@$(foreach mod,$(GOMODS),(cd $(dir $(mod)) && echo "📂 $(dir $(mod))" && GOWORK=off go-mod-upgrade }) &&) true
@$(MAKE) tidy
### Release
.PHONY: tag.submodules
## Create tags for submodules TAG=1.0.0
tag.submodules:
@echo "$(TAG)" | grep -qE '^v[0-9]+\.[0-9]+\.[0-9]+$$' || { echo "❌ TAG must be vX.Y.Z format"; exit 1; }
@git rev-parse "$(TAG)" >/dev/null 2>&1 || { echo "❌ Tag $(TAG) does not exist"; exit 1; }
@echo "🔖 Creating submodule tags..."
@find . -type f -name 'go.mod' -mindepth 2 -not -path './vendor/*' -exec sh -c 'dir=$$(dirname {} | sed "s|^\./||"); tag="$$dir/$(TAG)"; git rev-parse "$$tag" >/dev/null 2>&1 || { echo "🔖 $$tag"; git tag "$$tag"; }' \;
@echo "🔖 Pushing tags..."
@git push origin --tags
### Documentation
.PHONY: docs
## Open docs
docs:
@echo "〉starting docs"
@cd docs && bun install && bun run dev
.PHONY: docs.build
## Open docs
docs.build:
@echo "〉building docs"
@cd docs && bun install && bun run build
.PHONY: godocs
## Open go docs
godocs:
@echo "〉starting go docs"
@go doc -http
### Utils
.PHONY: actionlint
## Run actionlint
actionlint:
@actionlint
.PHONY: help
# https://patorjk.com/software/taag/#p=display&f=Future+Smooth&t=keel&x=none&v=4&h=4&w=80&we=false
## Show help text
help: g=\033[0;32m
help: b=\033[0;34m
help: w=\033[0;90m
help: e=\033[0m
help:
@echo "$(g)"
@echo "╷╭ ╭─╴╭─╴╷"
@echo "├┴╮├╴ ├╴ │"
@echo "╵ ╵╰─╴╰─╴╰─╴"
@echo "with ❤ foomo by bestbytes"
@echo "$(e)"
@echo "$(b)Usage:$(e)\n make [task]"
@awk '{ \
if($$0 ~ /^### /){ \
if(help) printf " %-21s $(w)%s$(e)\n\n", cmd, help; help=""; \
printf "$(b)\n%s:$(e)\n", substr($$0,5); \
} else if($$0 ~ /^[a-zA-Z0-9._-]+:/){ \
cmd = substr($$0, 1, index($$0, ":")-1); \
if(help) printf " %-21s $(w)%s$(e)\n", cmd, help; help=""; \
} else if($$0 ~ /^##/){ \
help = help ? help "\n " substr($$0,3) : substr($$0,3); \
} else if(help){ \
print "\n $(w)" help "$(e)\n"; help=""; \
} \
}' $(MAKEFILE_LIST)
@echo ""