feat(test-automation): complete Test-First Verify-Loop wiring (RFC-te… #103
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: skill-e2e | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| paths: | |
| - 'cmd/sin-code/internal/skillmgr/**' | |
| - 'cmd/sin-code/internal/mcpclient/**' | |
| workflow_dispatch: | |
| concurrency: | |
| group: skill-e2e-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| websearch: | |
| name: websearch skill install E2E | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-go@v5 | |
| with: | |
| go-version: "1.25.11" | |
| - name: Install websearch skill from GitHub | |
| run: | | |
| go test -tags=e2e ./cmd/sin-code/internal/skillmgr/ -run TestInstallWebsearchFromGitHub -count=1 -v 2>&1 | tail -30 | |
| - name: Verify binary is registered | |
| run: | | |
| go build -o /tmp/sin-code ./cmd/sin-code | |
| /tmp/sin-code mcp list | grep 'websearch' |