Skip to content

Commit 01635b5

Browse files
committed
Fix golangci-lint flag error and skip config verification
- Remove invalid --skip-config-verify flag which doesn't exist - Use skip-config-verify: true parameter supported by the GitHub Action - Remove --verbose flag that may have been triggering extra validation - Keep --timeout=5m for reasonable execution time This should resolve the 'unknown flag' error and prevent config validation timeouts when the remote JSON schema is unavailable.
1 parent 1983f49 commit 01635b5

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,8 @@ jobs:
6767
uses: golangci/golangci-lint-action@v8
6868
with:
6969
version: latest
70-
args: --timeout=5m --verbose --skip-config-verify
70+
args: --timeout=5m
71+
skip-config-verify: true
7172

7273
benchmark:
7374
name: Benchmark

0 commit comments

Comments
 (0)