From 17cb3b327c842125a43220273e4bf6ac28db4fb6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=20Tr=C3=B6ger?= Date: Thu, 21 Aug 2025 07:14:54 +0200 Subject: [PATCH] Create testing.yaml --- .gitea/workflows/testing.yaml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .gitea/workflows/testing.yaml diff --git a/.gitea/workflows/testing.yaml b/.gitea/workflows/testing.yaml new file mode 100644 index 0000000..43fc95c --- /dev/null +++ b/.gitea/workflows/testing.yaml @@ -0,0 +1,10 @@ +name: GoLang Tests +run-name: ${{ gitea.actor }} is testing golang Code +on: [push] + +jobs: + Run-Go-Test: + runs-on: golang-alpine + steps: + - run: go version + - run: go test ./...