From dc1fea7ae2b3ee0febbcc97561a8480dfc215fb1 Mon Sep 17 00:00:00 2001 From: Manuel Ganter Date: Mon, 10 Nov 2025 16:39:47 +0100 Subject: [PATCH] removed vendoring in go-test, linter is now compiled on execution --- Makefile | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/Makefile b/Makefile index 2d7abfe..111e7ea 100644 --- a/Makefile +++ b/Makefile @@ -20,16 +20,13 @@ build: clean: ## Clean up build artifacts @rm -rf ./bin ./build ./release -test: install-lint-deps verify go-test - -install-lint-deps: - @$(GO) install github.com/golangci/golangci-lint/cmd/golangci-lint@v1.63.4 +test: verify go-test lint: - @golangci-lint run --timeout=8m --build-tags testing + @go run github.com/golangci/golangci-lint/cmd/golangci-lint@v1.63.4 run --timeout=8m --build-tags testing ./... go-test: - @$(GO) test -race -mod=vendor -tags testing -v $(TEST_ARGS) -timeout=15m -parallel=4 -count=1 ./... + @$(GO) test -race -tags testing -v $(TEST_ARGS) -timeout=15m -parallel=4 -count=1 ./... fmt: @$(GO) fmt $$(go list ./...)