butterrobot/.woodpecker/ci.yml
Felipe M. 323ea4e8cd
Some checks failed
ci/woodpecker/push/ci Pipeline failed
fix(ci): updated woodpecker triggers
2025-04-22 11:40:10 +02:00

23 lines
332 B
YAML

when:
event:
- push
- pull_request
branch:
- master
steps:
format:
image: golang:1.24
commands:
- make format
- git diff --exit-code # Fail if files were changed
lint:
image: golang:1.24
commands:
- make ci-lint
test:
image: golang:1.24
commands:
- make test