initial release
All checks were successful
ci/woodpecker/tag/release Pipeline was successful

This commit is contained in:
Felipe M 2025-05-04 10:40:26 +02:00
commit 0ef15167d5
Signed by: fmartingr
GPG key ID: CCFBC5637D4000A8
28 changed files with 2789 additions and 0 deletions

23
.woodpecker/ci.yml Normal file
View file

@ -0,0 +1,23 @@
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

12
.woodpecker/release.yml Normal file
View file

@ -0,0 +1,12 @@
when:
- event: tag
branch: main
steps:
- name: Release
image: goreleaser/goreleaser:v2.9.0
environment:
GITEA_TOKEN:
from_secret: GITEA_TOKEN
commands:
- goreleaser release --clean