From 57311d748dd0e6a4cb77ee58a58cc3b05dd89082 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 0d1e7b71c..fcdfaa567 100644 --- a/Makefile +++ b/Makefile @@ -146,7 +146,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