We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0461536 commit 0ed3033Copy full SHA for 0ed3033
.github/workflows/lint.yml
@@ -25,11 +25,11 @@ jobs:
25
go-version-file: .go-version
26
check-latest: false
27
28
- - name: Lint code
29
- uses: golangci/golangci-lint-action@v6
30
- with:
31
- version: latest
32
- only-new-issues: true
+ - name: Install golangci-lint from source
+ run: go install github.com/golangci/golangci-lint/cmd/golangci-lint@latest
+
+ - name: Run golangci-lint
+ run: golangci-lint run --timeout=5m --out-format=colored-line-number
33
34
govulncheck:
35
name: Vulnerability Scan
0 commit comments