mirror of
https://github.com/ivuorinen/gh-action-readme.git
synced 2026-03-11 09:59:40 +00:00
Initial commit
This commit is contained in:
25
Makefile
Normal file
25
Makefile
Normal file
@@ -0,0 +1,25 @@
|
||||
.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/
|
||||
|
||||
Reference in New Issue
Block a user