ci: Add Gitea Actions workflow
CI / Test and build (pull_request) Successful in 24s

Pushes and pull requests had no automated test or build on Gitea.
A CI workflow matching the existing Go module runs go test -race and
go build on master, develop, and pull requests.

Fixes #7
This commit is contained in:
s1d3sw1ped_bot
2026-09-01 19:45:01 +00:00
parent 6486698acd
commit 9185e1de89
+28
View File
@@ -0,0 +1,28 @@
name: CI
on:
push:
branches:
- master
- develop
pull_request:
jobs:
ci:
name: Test and build
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
cache: true
- name: Test
run: go test -race ./...
- name: Build
run: go build ./...