Redesign architecture diagram: even boxes, wider layout\n\n- All 5 bo… #10
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: [master] | |
| pull_request: | |
| branches: [master] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| python-version: ["3.11", "3.12"] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install -e ".[dev]" | |
| - name: Run tests | |
| run: pytest --tb=short -q | |
| - name: Validate agent configs | |
| run: | | |
| for config in agents/*.yaml; do | |
| echo "Validating $config..." | |
| heddle validate "$config" | |
| done | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.12" | |
| - name: Check syntax | |
| run: | | |
| python -m py_compile src/heddle/cli.py | |
| python -m py_compile src/heddle/config/schema.py | |
| python -m py_compile src/heddle/config/loader.py | |
| python -m py_compile src/heddle/mcp/server.py | |
| python -m py_compile src/heddle/mcp/registry.py | |
| python -m py_compile src/heddle/security/audit.py | |
| python -m py_compile src/heddle/security/trust.py | |
| python -m py_compile src/heddle/security/credentials.py | |
| python -m py_compile src/heddle/security/validation.py | |
| python -m py_compile src/heddle/security/signing.py | |
| python -m py_compile src/heddle/security/sandbox.py |