trepa/.woodpecker/.lint.yml
2025-02-20 12:09:38 +00:00

11 lines
326 B
YAML

when:
event: [tag, push]
steps:
lint:
image: golang:1.23-alpine
commands:
- apk update
- apk add bash curl jq
- curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.60.1
- $(go env GOPATH)/bin/golangci-lint run --fast