Update for supernova #504
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: golangci-lint | |
| on: | |
| pull_request: | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| golangci: | |
| name: golangci linter | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/setup-go@v5 | |
| with: | |
| go-version: 1.23.6 | |
| - uses: actions/checkout@v4 | |
| - name: golangci-lint | |
| uses: golangci/golangci-lint-action@v6 | |
| with: | |
| version: v1.64.5 | |
| # Optional: golangci-lint command line arguments. | |
| args: --timeout 10m0s --max-issues-per-linter 0 --max-same-issues 0 --print-issued-lines | |
| # Optional: show only new issues if it's a pull request. The default value is `false`. | |
| only-new-issues: true |