From 8d33624520375f5c7d60b15e9ff24a59232f336f Mon Sep 17 00:00:00 2001 From: Marc Khouzam Date: Mon, 15 Feb 2021 21:27:19 -0500 Subject: [PATCH] fix(test): Increase golangci-lint timeout CircleCI has been failing on 'make test-style' because of a timeout. This commit increases the timeout. Signed-off-by: Marc Khouzam --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index e39ad0591..18ff56a4f 100644 --- a/Makefile +++ b/Makefile @@ -113,7 +113,7 @@ test-coverage: .PHONY: test-style test-style: - GO111MODULE=on golangci-lint run + GO111MODULE=on golangci-lint run --timeout 5m0s @scripts/validate-license.sh .PHONY: test-acceptance