Makefile: increase the timeout for make golangci-lint from 1 minute to 2 minutes

This should fix timeout errors on GitHub actions
This commit is contained in:
Aliaksandr Valialkin 2020-04-17 19:13:18 +03:00
parent 936fb0eac3
commit 94ad531bfe

View file

@ -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