From 182c6d46f750e5e9b4571aaacdc8194d903ca873 Mon Sep 17 00:00:00 2001 From: Joe Julian Date: Sat, 28 Mar 2026 12:46:12 -0700 Subject: [PATCH] Add Gitea Actions workflow --- .gitea/workflows/ci.yaml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .gitea/workflows/ci.yaml diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml new file mode 100644 index 0000000..c9479e6 --- /dev/null +++ b/.gitea/workflows/ci.yaml @@ -0,0 +1,25 @@ +name: CI + +on: + push: + branches: + - main + pull_request: + +jobs: + test: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Setup Go + uses: actions/setup-go@v5 + with: + go-version-file: go.mod + + - name: Test + run: go test ./... + + - name: Build + run: go build .