11 lines
333 B
YAML
11 lines
333 B
YAML
when:
|
|
event: [tag, push]
|
|
|
|
steps:
|
|
- name: lint
|
|
image: golang:1.24-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.64.5
|
|
- $(go env GOPATH)/bin/golangci-lint run --fast
|