Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix golangci-lint-action #1082

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/pre-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
level: warning
- name: Golangci-lint
uses: golangci/golangci-lint-action@818ec4d51a1feacefc42ff1b3ec25d4962690f39 # v6.4.1
uses: golangci/golangci-lint-action@2226d7cb06a077cd73e56eedd38eecad18e5d837 # v6.4.1
with:
version: v1.64
args: --timeout 10m0s
Expand Down
10 changes: 1 addition & 9 deletions .golangci.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
run:
go: "1.24"
timeout: 15m0s
skip-dirs-use-default: true
fast: false
timeout: 15m

linters-settings:
revive:
Expand All @@ -21,9 +19,6 @@ linters-settings:
funlen:
lines: 175
statements: 85
unused:
check-exported: true
go: "1.24"
stylecheck:
dot-import-whitelist:
- github.com/onsi/gomega
Expand Down Expand Up @@ -84,9 +79,6 @@ linters:
- wastedassign
- wsl
- nlreturn

output:
formats: colored-line-number
issues:
max-issues-per-linter: 0
max-same-issues: 0
Expand Down
Loading