Increase timeout on linter for when CI gets slow

This commit is contained in:
Ryan Richard 2022-01-18 10:06:53 -08:00
parent ebcf71c30c
commit 6143d66504
1 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
#!/usr/bin/env bash #!/usr/bin/env bash
# Copyright 2020-2021 the Pinniped contributors. All Rights Reserved. # Copyright 2020-2022 the Pinniped contributors. All Rights Reserved.
# SPDX-License-Identifier: Apache-2.0 # SPDX-License-Identifier: Apache-2.0
set -euo pipefail set -euo pipefail
@ -13,7 +13,7 @@ function tidy_cmd() {
} }
function lint_cmd() { function lint_cmd() {
echo "golangci-lint run --modules-download-mode=readonly --timeout=10m" echo "golangci-lint run --modules-download-mode=readonly --timeout=15m"
} }
function test_cmd() { function test_cmd() {