Skip to content

feat(test-automation): complete Test-First Verify-Loop wiring (RFC-te… #103

feat(test-automation): complete Test-First Verify-Loop wiring (RFC-te…

feat(test-automation): complete Test-First Verify-Loop wiring (RFC-te… #103

Workflow file for this run

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'