simplelog/Makefile

18 lines
206 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 .)"'
2024-06-14 12:47:35 +00:00
docker:
docker build --progress plain .