From d1da9e757e140268068d32c051ccd88013138096 Mon Sep 17 00:00:00 2001 From: Adam Reese Date: Tue, 6 Jul 2021 10:37:37 -0700 Subject: [PATCH] fix(ci-lint): increase timeout for golangci-lint Signed-off-by: Adam Reese --- .golangci.yml | 2 +- Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.golangci.yml b/.golangci.yml index 491e648a1..5c2445711 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -1,5 +1,5 @@ run: - timeout: 2m + timeout: 10m linters: disable-all: true diff --git a/Makefile b/Makefile index d897bc939..555484fcd 100644 --- a/Makefile +++ b/Makefile @@ -113,7 +113,7 @@ test-coverage: .PHONY: test-style test-style: - GO111MODULE=on golangci-lint run --timeout 5m0s + GO111MODULE=on golangci-lint run @scripts/validate-license.sh .PHONY: test-acceptance