ci: add integration test workflow for pull requests

Co-authored-by: sam <sam@users.noreply.local>
This commit is contained in:
2026-03-06 01:54:26 +00:00
parent 9cbbbca2e3
commit e2088e0541

16
.gitea/workflows/test.yml Normal file
View File

@@ -0,0 +1,16 @@
name: Integration Tests
on:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: scripts/rsw/go.mod
- name: Run integration tests
working-directory: scripts/rsw
run: go test ./internal/wiki/...