From 070bf083f3c9df47b3ef9bbea773eba3f2708fcc Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Sun, 12 May 2024 11:08:32 +0200 Subject: [PATCH] ci: fix golangci-lint deprecations --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 2a100a3..112a402 100644 --- a/Makefile +++ b/Makefile @@ -11,7 +11,7 @@ IMPORT := github.com/thegeeklab/$(EXECUTABLE) GO ?= go CWD ?= $(shell pwd) -PACKAGES ?= $(shell go list ./... | grep -Ev '/mocks$$') +PACKAGES ?= $(shell go list ./...) SOURCES ?= $(shell find . -name "*.go" -type f) GOFUMPT_PACKAGE ?= mvdan.cc/gofumpt@$(GOFUMPT_PACKAGE_VERSION)