mirror of
https://github.com/ivuorinen/gh-action-readme.git
synced 2026-01-26 11:14:04 +00:00
26 lines
350 B
Makefile
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/
|
|
|