From 94ad531bfe55998f9afd15c0c3147b39fb39b6b3 Mon Sep 17 00:00:00 2001 From: Aliaksandr Valialkin Date: Fri, 17 Apr 2020 19:13:18 +0300 Subject: [PATCH] Makefile: increase the timeout for `make golangci-lint` from 1 minute to 2 minutes This should fix timeout errors on GitHub actions --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 1c6342b76..ec022428d 100644 --- a/Makefile +++ b/Makefile @@ -130,7 +130,7 @@ install-qtc: golangci-lint: install-golangci-lint - golangci-lint run --exclude '(SA4003|SA1019):' -D errcheck -D structcheck + golangci-lint run --exclude '(SA4003|SA1019):' -D errcheck -D structcheck --timeout 2m install-golangci-lint: which golangci-lint || GO111MODULE=off go get -u github.com/golangci/golangci-lint/cmd/golangci-lint