populatedb-go/Makefile

12 lines
197 B
Makefile
Raw Normal View History

2022-11-06 09:21:32 +00:00
.PHONY: all test-color lint
all: test-color lint
go mod tidy
test-color:
go install github.com/haunt98/go-test-color@latest
go-test-color -race -failfast ./...
lint:
golangci-lint run ./...