From 4fe408feb649c8344701548a3ad5c3b861a1251c Mon Sep 17 00:00:00 2001 From: iwilltry42 Date: Thu, 16 Mar 2023 12:23:45 +0100 Subject: [PATCH] change: ghactions increased lint timeout --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index da687134..2918c8d6 100644 --- a/Makefile +++ b/Makefile @@ -172,6 +172,9 @@ check-fmt: lint: @golangci-lint run -D $(GOLANGCI_LINT_DISABLED_LINTERS) $(LINT_DIRS) +ci-lint: + golangci-lint run --timeout 5m0s --out-format=github-actions -D $(GOLANGCI_LINT_DISABLED_LINTERS) $(LINT_DIRS) + check: check-fmt lint ###########################