From 7ed957077d9d0884a4930e7d2b60ad23344baede Mon Sep 17 00:00:00 2001 From: d3m0k1d Date: Sat, 10 Jan 2026 22:15:24 +0300 Subject: [PATCH] First ci for gitea --- .gitea/workflows/CI.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .gitea/workflows/CI.yml diff --git a/.gitea/workflows/CI.yml b/.gitea/workflows/CI.yml new file mode 100644 index 0000000..6243d96 --- /dev/null +++ b/.gitea/workflows/CI.yml @@ -0,0 +1,21 @@ +name: CI.yml + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v6 + - name: Go setup + uses: actions/setup-go@v6 + with: + go-version: '1.25' + - name: Build + run: go build -o BanForge /cmd/banforge