initial commit
All checks were successful
Go Test / test (push) Successful in 25s

This commit is contained in:
2025-05-30 19:23:34 +02:00
commit 302df33baa
6 changed files with 297 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
name: Go Test
on:
push:
branches: [ main ]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: https://github.com/actions/checkout@v4
- name: Set up Go
uses: https://github.com/actions/setup-go@v5
with:
go-version: '1.24.3'
- name: Run tests
run: go test -v ./...