Files
gh-action-readme/Makefile
2025-07-30 19:17:36 +03:00

26 lines
350 B
Makefile

.PHONY: test lint run example clean readme config-verify
all: test lint
test:
go test ./...
lint:
golangci-lint run || true
config-verify:
golangci-lint config verify --verbose
run:
go run .
example:
go run . gen --config config.yaml --output-format=md
readme:
go run . gen --config config.yaml --output-format=md
clean:
rm -rf dist/