Add CI/publish workflows, tracer tests, fix Go version in CLAUDE.md
All checks were successful
CI / test (push) Successful in 54s

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-03-23 14:35:20 +03:00
parent 84413772df
commit 362267470e
4 changed files with 187 additions and 1 deletions

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

@@ -0,0 +1,23 @@
name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Vet
run: go vet ./...
- name: Test
run: go test -race -count=1 ./...