Rename perset_test to orm_test, Gitea action for running tests
Go Tests / test (push) Has been cancelled

This commit is contained in:
2026-05-03 19:32:34 +02:00
parent 106e5c3dc5
commit 82e34cc2f3
2 changed files with 25 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
name: Go Tests
on:
push:
branches: [main]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: "1.22"
- name: Download dependencies
run: go mod download
- name: Run tests
run: go test -v
View File