From 89175de09581b8342c7b64180744b5d284a9cc32 Mon Sep 17 00:00:00 2001 From: Matthias Hinrichs Date: Fri, 21 Nov 2025 21:59:42 +0100 Subject: [PATCH] feat: add Gitea CI configuration for build and test pipeline --- .gitea/gitea-ci.yaml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .gitea/gitea-ci.yaml diff --git a/.gitea/gitea-ci.yaml b/.gitea/gitea-ci.yaml new file mode 100644 index 0000000..f13cf95 --- /dev/null +++ b/.gitea/gitea-ci.yaml @@ -0,0 +1,21 @@ +# +# .gitea/gitea-ci.yaml +# + +name: Build And Test +run-name: ${{ gitea.actor }} is runs ci pipeline +on: + push: + branches: + - main + workflow_dispatch: +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: https://github.com/actions/checkout@v4 + - name: Use Go + uses: https://github.com/actions/setup-go@v5 + with: + go-version: '1.24' + - run: go version \ No newline at end of file