⚙️ CI/CD Integration Guide

Integrate TAB testing framework into your CI/CD pipeline

🔑 API Token

Generate access token for CI/CD

🔗 Test Webhook

Verify webhook connectivity

📚 API Docs

View REST API documentation

View API Reference

GitHub Actions Integration

Add this workflow to .github/workflows/tab-testing.yml

name: TAB Agent Testing
on: [push, pull_request]
jobs:
  test:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v3
      - name: Run TAB Tests
        run: |
          curl -X POST https://api.tabverified.ai/api/testing/run \
            -H "Authorization: Bearer ${{ secrets.TAB_TOKEN }}" \
            -d '{"agent_id": "${{ secrets.AGENT_ID }}"}'