CI: add Gitea-compatible workflow wrapper

This commit is contained in:
lab-code-heavy
2026-02-23 21:08:47 -06:00
committed by shadowmo
parent ec9d3d5a4e
commit 9eb6b6506d

18
.gitea/workflows/ci.yml Normal file
View File

@@ -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