From 964453450d9d4b2c4c9e9e9104ccd406679d6e49 Mon Sep 17 00:00:00 2001 From: Hau Nguyen Date: Fri, 22 Jul 2022 21:07:02 +0700 Subject: [PATCH] chore: add Makefile --- Makefile | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 Makefile 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 ./...