From 9eb6b6506d2e4550af3e97623b421eaf628ca060 Mon Sep 17 00:00:00 2001 From: lab-code-heavy Date: Mon, 23 Feb 2026 21:08:47 -0600 Subject: [PATCH] CI: add Gitea-compatible workflow wrapper --- .gitea/workflows/ci.yml | 18 ++++++++++++++++++ 1 file changed, 18 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..13e370a --- /dev/null +++ b/.gitea/workflows/ci.yml @@ -0,0 +1,18 @@ +name: CI +on: + push: + branches: [ main, work/review ] +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v2 + - name: Set up Go + uses: actions/setup-go@v2 + with: + go-version: '1.20' + - name: Build + run: make build + - name: Test + run: make test