smtp2shoutrrr/.woodpecker/ci.yml
Felipe M. 7c588033c9
Some checks failed
ci/woodpecker/push/ci Pipeline was successful
CI / test (push) Has been cancelled
Release / release (push) Has been cancelled
ci: makefile commands to test, lint and format
2025-02-21 10:12:43 +01:00

23 lines
330 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: golang:1.24
commands:
- make ci-lint
test:
image: golang:1.24
commands:
- make test