let golangci-lint have 5m to check

This commit is contained in:
6543 2022-05-10 18:14:28 +02:00
parent 1724d9fb2e
commit 2dbc66d052
No known key found for this signature in database
GPG Key ID: C99B82E40B027BAE
2 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,7 @@ pipeline:
- go version
- go install mvdan.cc/gofumpt@latest
- "[ $(gofumpt -extra -l . | wc -l) != 0 ] && { echo 'code not formated'; exit 1; }"
- golangci-lint run
- golangci-lint run --timeout 5m
test:
image: golang

View File

@ -13,7 +13,7 @@ build:
lint: tool-golangci tool-gofumpt
[ $(gofumpt -extra -l . | wc -l) != 0 ] && { echo 'code not formated'; exit 1; }; \
golangci-lint run
golangci-lint run --timeout 5m
tool-golangci:
@hash golangci-lint> /dev/null 2>&1; if [ $? -ne 0 ]; then \