Add Gitea Actions workflow

This commit is contained in:
Joe Julian
2026-03-28 12:46:12 -07:00
parent 5d1be582b5
commit 182c6d46f7
+25
View File
@@ -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 .