Skip to content

Commit bd9ff2a

Browse files
committed
Increase timeout for golangci-lint in CI
We're regularly hitting the default of 1m, so we can increase this to 5m for a bit more breathing room. If we hit it again, we can then look at other changes that may be required. Closes #1172.
1 parent 7447b7f commit bd9ff2a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ lint: tools
1919
$(GOBIN)/golangci-lint run ./...
2020

2121
lint-ci: tools
22-
$(GOBIN)/golangci-lint run ./... --out-format=github-actions
22+
$(GOBIN)/golangci-lint run ./... --out-format=github-actions --timeout=5m
2323

2424
generate:
2525
go generate ./...

0 commit comments

Comments
 (0)