forked from TrueCloudLab/frostfs-node
[#183] Increase golangci-lint timeout
Signed-off-by: Stanislav Bogatyrev <stanislav@nspcc.ru>
This commit is contained in:
parent
e8fe07edd0
commit
badfd1b6e5
2 changed files with 3 additions and 2 deletions
3
.github/workflows/go.yml
vendored
3
.github/workflows/go.yml
vendored
|
@ -55,5 +55,6 @@ jobs:
|
||||||
- name: golangci-lint
|
- name: golangci-lint
|
||||||
uses: golangci/golangci-lint-action@v2
|
uses: golangci/golangci-lint-action@v2
|
||||||
with:
|
with:
|
||||||
version: v1.29
|
version: v1.30
|
||||||
|
args: --timeout=5m
|
||||||
only-new-issues: true
|
only-new-issues: true
|
||||||
|
|
2
Makefile
2
Makefile
|
@ -104,7 +104,7 @@ test: test_dep
|
||||||
|
|
||||||
# Run linters
|
# Run linters
|
||||||
lint:
|
lint:
|
||||||
@golangci-lint run
|
@golangci-lint --timeout=5m run
|
||||||
|
|
||||||
# Run linters in Docker
|
# Run linters in Docker
|
||||||
docker/lint:
|
docker/lint:
|
||||||
|
|
Loading…
Reference in a new issue