ci: add integration test workflow for pull requests
Co-authored-by: sam <sam@users.noreply.local>
This commit is contained in:
16
.gitea/workflows/test.yml
Normal file
16
.gitea/workflows/test.yml
Normal 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/...
|
||||||
Reference in New Issue
Block a user