From 5e908d1584ba1053aa6b8839d1d4ca3b509107b8 Mon Sep 17 00:00:00 2001 From: Patrick DeVivo Date: Mon, 17 Oct 2022 19:43:05 -0400 Subject: [PATCH] fix: while we're here, add a `--timeout` flag to the golangci linter --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index fddb65ed..eb5d1d07 100644 --- a/Makefile +++ b/Makefile @@ -62,7 +62,7 @@ lint: golangci-lint run --build-tags $(TAGS) lint-ci: - ./bin/golangci-lint run --build-tags $(TAGS) --out-format github-actions + ./bin/golangci-lint run --build-tags $(TAGS) --out-format github-actions --timeout 5m test: go test -v -tags=$(TAGS) ./...