ci(gitea): add validation and release workflows

This commit is contained in:
Micheal Wilkinson
2026-03-20 09:37:09 +00:00
parent 0dfacc31d4
commit a7e4c501e4
4 changed files with 183 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
name: Push Unit Tests
on:
push:
branches:
- "**"
tags-ignore:
- "*"
jobs:
unit-tests:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Run full unit test suite
run: go test ./...