feat(cicd): add Gitea CI workflow for feature branches and PRs
Some checks failed
deploy / deploy-finance (push) Has been cancelled
deploy / test (push) Has been cancelled

This commit is contained in:
Gonçalo Rodrigues 2026-06-26 23:50:23 +01:00
parent 6afc95ef4c
commit 5657ec530a

20
.gitea/workflows/ci.yaml Normal file
View File

@ -0,0 +1,20 @@
name: ci
on:
push:
branches-ignore: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Run tests
run: go test ./...