From cc49345c3924b954d39a200f95fde97806273993 Mon Sep 17 00:00:00 2001 From: ish Date: Mon, 12 Aug 2024 00:56:46 +0900 Subject: [PATCH] Makefile: Increase timeout of linter --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ae7b6d1..71aba57 100644 --- a/Makefile +++ b/Makefile @@ -29,7 +29,7 @@ lint: dependency ## Lint the files if [ ! -f "$$go_path/bin/golangci-lint" ]; then \ ${GO_COMMAND} install github.com/golangci/golangci-lint/cmd/golangci-lint@latest; \ fi; \ - $$go_path/bin/golangci-lint run -E contextcheck -E revive + $$go_path/bin/golangci-lint run --timeout 30m -E contextcheck -E revive test: dependency ## Run unittests @echo "Running tests..."