From 0e2ed5bb69238639fb08e59e66027351b061d7c6 Mon Sep 17 00:00:00 2001 From: Hau Nguyen Date: Sat, 25 Feb 2023 23:23:31 +0700 Subject: [PATCH] chore: run go mod tidy first --- Makefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Makefile b/Makefile index ffaf8f2..dbbf9fa 100644 --- a/Makefile +++ b/Makefile @@ -1,12 +1,12 @@ .PHONY: all test-color lint all: + go mod tidy $(MAKE) test-color $(MAKE) lint $(MAKE) format $(MAKE) build $(MAKE) clean - go mod tidy test-color: go install github.com/haunt98/go-test-color@latest @@ -18,7 +18,6 @@ lint: format: go install github.com/haunt98/gofimports/cmd/gofimports@latest go install mvdan.cc/gofumpt@latest - go install mvdan.cc/sh/v3/cmd/shfmt@latest gofimports -w --company github.com/make-go-great,github.com/haunt98 . gofumpt -w -extra .