go-traefik-certmanager/.woodpecker/.lint.yaml
Renovate Bot e3704b8f19
Some checks failed
ci/woodpecker/push/lint Pipeline failed
ci/woodpecker/push/build unknown status
chore(deps): update golangci/golangci-lint docker tag to v2
2025-04-15 14:08:55 +00:00

20 lines
425 B
YAML

steps:
- name: gofmt
image: golang:1.24.2
commands:
- gofmt -l -s .
when:
- event: [push, manual]
- name: vuln-check
image: golang:1.24.2
commands:
- go install golang.org/x/vuln/cmd/govulncheck@latest
- govulncheck ./...
when:
- event: [push, manual]
- name: golangci-linter
image: golangci/golangci-lint:v2.1.2
commands:
- golangci-lint run ./...
when:
- event: [push, manual]