From d3b4ed75722b6a38392c07e0055c9619cc45095d Mon Sep 17 00:00:00 2001 From: Joakim Olsson Date: Sat, 28 Dec 2024 18:26:04 +0100 Subject: [PATCH] feat(golangci): increase timeout for parallel runners to 5m Sets the timeout for parallel runners in the golangci configuration to 5 minutes to improve the efficiency of running multiple tasks without exceeding time limits. --- .golangci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.golangci.yml b/.golangci.yml index 9692e46..49d25da 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -1,2 +1,3 @@ run: allow-parallel-runners: true + timeout: 5m