chore(ci): add golang tests
All checks were successful
Golang Tests / unittest (push) Successful in 2m49s
Markdown linter / markdown-lint (push) Successful in 10s

This commit is contained in:
Markus Pesch 2025-04-14 19:22:50 +02:00
parent 5eec7fc1a5
commit 1c63683d97
Signed by: volker.raschek
GPG Key ID: 852BCC170D81A982

View File

@ -0,0 +1,21 @@
name: Golang Tests
on:
pull_request:
types: [ "opened", "reopened", "synchronize" ]
push:
branches:
- '**'
tags-ignore:
- '**'
jobs:
unittest:
runs-on:
- ubuntu-latest
steps:
- uses: actions/checkout@v4.2.2
- uses: actions/setup-go@v5.4.0
with:
go-version: stable
- run: make test/unit