gosimpleconf/Makefile

11 lines
130 B
Makefile

all: test
test: linter
go test
linter:
golangci-lint run
goimports_everything:
find . -name "*.go" -exec goimports -w {} \;