diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..c042289 --- /dev/null +++ b/Makefile @@ -0,0 +1,10 @@ +.PHONY: all test-color lint + +all: test-color lint + +test-color: + go install github.com/haunt98/go-test-color@latest + go-test-color -race -failfast ./... + +lint: + golangci-lint run ./...