refactor(llm,vision): canonical codec_llm + codec_vision helpers (A-11 + A-12 tranche 1) #188
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: CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| smoke: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.13" | |
| - name: Install deps | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install pytest fastmcp httpx requests pynput pydantic | |
| - name: Skill import smoke test | |
| run: python tests/test_skill_imports.py | |
| - name: Skill contract tests | |
| run: python -m pytest tests/test_skill_contracts.py -v | |
| - name: Trusted-skill manifest is current (D-1 gate) | |
| run: python tools/generate_skill_manifest.py --check | |
| - name: Skill registry load-time AST gate tests (D-1) | |
| run: python -m pytest tests/test_skill_registry.py -v | |
| - name: Keychain helper + secret-migration tests (D-8, D-15) | |
| run: python -m pytest tests/test_keychain.py -v | |
| - name: OAuth provider unit test | |
| run: python -m pytest tests/test_oauth_provider.py -v | |
| - name: Retry helper unit test | |
| run: python -m pytest tests/test_retry.py -v |