simplelog/Makefile

15 lines
164 B
Makefile
Raw Normal View History

2024-05-14 04:43:47 +00:00
.PHONY: test
default: test
test:
@go test -v ./...
fmt:
goimports -l -w .
golangci-lint run --fix
lint:
golangci-lint run
sh -c 'test -z "$$(gofmt -l .)"'