fix(twilio-migration): correct public guidance and TeXML contracts #33
Workflow file for this run
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: Twilio migration contracts | |
| on: | |
| pull_request: | |
| paths: | |
| - '.github/workflows/twilio-migration-tests.yml' | |
| - 'skills/telnyx-twilio-migration/**' | |
| - 'providers/claude/plugins/telnyx-platform/skills/telnyx-twilio-migration/**' | |
| - 'providers/cursor/plugin/skills/telnyx-twilio-migration/**' | |
| - 'tests/test_twilio_migration_scripts.py' | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - '.github/workflows/twilio-migration-tests.yml' | |
| - 'skills/telnyx-twilio-migration/**' | |
| - 'providers/claude/plugins/telnyx-platform/skills/telnyx-twilio-migration/**' | |
| - 'providers/cursor/plugin/skills/telnyx-twilio-migration/**' | |
| - 'tests/test_twilio_migration_scripts.py' | |
| permissions: | |
| contents: read | |
| jobs: | |
| contracts: | |
| name: Migration contracts (no network) | |
| runs-on: ubuntu-latest | |
| # Observed job duration on this branch: 142-206s across runs, trending up | |
| # as contract cases are added. 20 minutes keeps headroom for that growth | |
| # and for runner variance without letting a hung run burn a full hour. | |
| timeout-minutes: 20 | |
| steps: | |
| - uses: actions/checkout@11d5960a326750d5838078e36cf38b85af677262 # v4 | |
| - uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5 | |
| with: | |
| python-version: '3.12' | |
| - run: python3 tests/test_twilio_migration_scripts.py -v |