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

This commit was merged in pull request #10.
This commit is contained in:
s1d3sw1ped_bot
2026-09-01 14:46:22 -05:00
+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 ./...