grafana-backuper/.woodpecker/.lint.yaml
Renovate Bot 6b12bb518a
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 golang docker tag to v1.23.4
2024-12-07 02:14:14 +01:00

20 lines
396 B
YAML

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