Skip to content

Commit

Permalink
fix: Run golangci-lint cache disable
Browse files Browse the repository at this point in the history
  • Loading branch information
teilomillet committed Dec 22, 2024
1 parent 91f6b75 commit 2e2a0c3
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/go-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,15 @@ jobs:
uses: golangci/golangci-lint-action@v3
with:
version: latest
args: --timeout=5m
args: |
--timeout=5m
--disable-all
--out-format=colored-line-number
--issues-exit-code=1
# Only show new issues for pull requests
only-new-issues: true
skip-pkg: true
skip-build-cache: false

- name: Upload coverage
if: success()
Expand Down

0 comments on commit 2e2a0c3

Please sign in to comment.