Gonçalo Rodrigues 5657ec530a
Some checks failed
deploy / deploy-finance (push) Has been cancelled
deploy / test (push) Has been cancelled
feat(cicd): add Gitea CI workflow for feature branches and PRs
2026-06-26 23:50:23 +01:00

21 lines
309 B
YAML

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 ./...