From 28c2a004340271c2b03775801141cfa87955f283 Mon Sep 17 00:00:00 2001 From: Damjan Smickovski Date: Tue, 12 Sep 2023 07:54:09 +0200 Subject: [PATCH] Added timeout to golangci-lint --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index c19ab49ff..80e6b16f7 100644 --- a/Makefile +++ b/Makefile @@ -95,12 +95,12 @@ gomodtidy: .PHONY: lint-go-ops lint-go-ops: - cd ./ops && golangci-lint --color=always --out-format checkstyle:golangci-lint-ops-report.xml run + cd ./ops && golangci-lint --color=always --timeout 10m --out-format checkstyle:golangci-lint-ops-report.xml run .PHONY: lint-go-integration-tests lint-go-integration-tests: - cd ./integration-tests && golangci-lint --color=always --out-format checkstyle:golangci-lint-integration-tests-report.xml run + cd ./integration-tests && golangci-lint --color=always --timeout 10m --out-format checkstyle:golangci-lint-integration-tests-report.xml run .PHONY: lint-go-relay lint-go-relay: - cd ./pkg && golangci-lint --color=always --out-format checkstyle:golangci-lint-relay-report.xml run \ No newline at end of file + cd ./pkg && golangci-lint --color=always --timeout 10m --out-format checkstyle:golangci-lint-relay-report.xml run \ No newline at end of file