From e2088e0541f841eb8a7dcdfcaa2ebb1d6e056640 Mon Sep 17 00:00:00 2001 From: Claude Date: Fri, 6 Mar 2026 01:54:26 +0000 Subject: [PATCH] ci: add integration test workflow for pull requests Co-authored-by: sam --- .gitea/workflows/test.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .gitea/workflows/test.yml diff --git a/.gitea/workflows/test.yml b/.gitea/workflows/test.yml new file mode 100644 index 0000000..9d8bb9a --- /dev/null +++ b/.gitea/workflows/test.yml @@ -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/...