initial commit
Some checks failed
Go Test / test (push) Failing after 3s

This commit is contained in:
2025-05-30 19:23:34 +02:00
commit 0762c65972
6 changed files with 331 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: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.24.3'
- name: Run tests
run: go test -v ./...