From 4483269709a5b538cc2220639cfb2651ecbd8d12 Mon Sep 17 00:00:00 2001 From: Steliyan Stoyanov Date: Fri, 17 Jul 2026 16:00:55 +0300 Subject: [PATCH] Add go mod tidy -diff step --- Makefile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index a51e98b..4b06fc5 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ .DEFAULT_GOAL := ci -.PHONY: fmt lint vulncheck test ci +.PHONY: fmt lint vulncheck tidy test ci fmt: golangci-lint fmt @@ -10,7 +10,10 @@ lint: vulncheck: govulncheck ./... +tidy: + go mod tidy -diff + test: go test -v ./... -ci: vulncheck lint test +ci: vulncheck tidy lint test