2022-07-22 14:07:02 +00:00
|
|
|
.PHONY: all test-color lint
|
|
|
|
|
|
|
|
all: test-color lint
|
2022-08-16 03:34:55 +00:00
|
|
|
go mod tidy
|
2022-07-22 14:07:02 +00:00
|
|
|
|
|
|
|
test-color:
|
|
|
|
go install github.com/haunt98/go-test-color@latest
|
|
|
|
go-test-color -race -failfast ./...
|
|
|
|
|
|
|
|
lint:
|
|
|
|
golangci-lint run ./...
|