Add GitHub Actions workflow for testing with Go
All checks were successful
Test Workflow / testver (push) Successful in 1m38s

This commit is contained in:
2025-12-10 22:28:21 +01:00
parent 2f828840dc
commit dd63e80e50

23
.gitea/workflows/test.yml Normal file
View File

@@ -0,0 +1,23 @@
name: Test Workflow
on:
push:
branches:
- main
- dev
jobs:
testver:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: '1.25.5'
- name: Install Tea
run: go install code.gitea.io/tea@latest