grafana-backuper/.woodpecker/.lint.yaml
Renovate Bot a5032c0c75
All checks were successful
ci/woodpecker/push/lint Pipeline was successful
ci/woodpecker/push/test Pipeline was successful
ci/woodpecker/push/build Pipeline was successful
ci/woodpecker/push/deploy Pipeline was successful
chore(deps): update golangci/golangci-lint docker tag to v1.64.7
2025-03-12 00:04:35 +00:00

20 lines
396 B
YAML

steps:
- name: gofmt
image: golang:1.24.1
commands:
- gofmt -l -s .
when:
- event: push
- name: vuln-check
image: golang:1.24.1
commands:
- go install golang.org/x/vuln/cmd/govulncheck@latest
- govulncheck ./...
when:
- event: push
- name: golangci-linter
image: golangci/golangci-lint:v1.64.7
commands:
- golangci-lint run ./...
when:
- event: push