Some checks failed
CI / test (push) Waiting to run
Release / release (push) Waiting to run
ci/woodpecker/push/ci Pipeline failed
23 lines
344 B
YAML
23 lines
344 B
YAML
when:
|
|
event:
|
|
- push
|
|
- pull_request
|
|
branch:
|
|
- main
|
|
|
|
steps:
|
|
format:
|
|
image: golang:1.24
|
|
commands:
|
|
- make format
|
|
- git diff --exit-code # Fail if files were changed
|
|
|
|
lint:
|
|
image: golangci/golangci-lint:v1.56
|
|
commands:
|
|
- make lint
|
|
|
|
test:
|
|
image: golang:1.24
|
|
commands:
|
|
- make test
|