dharma/.woodpecker/ci.yml
Felipe M. 0ef15167d5
All checks were successful
ci/woodpecker/tag/release Pipeline was successful
initial release
2025-05-04 10:49:50 +02:00

23 lines
336 B
YAML

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