v0.16.7: Increase test coverage and fix legacy test paths #337
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: Execution Governance CI | |
| on: | |
| pull_request: | |
| push: | |
| branches: [ main ] | |
| jobs: | |
| execution-governance: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Clone forgesyte-plugins (for integration tests) | |
| run: | | |
| cd .. | |
| git clone --depth 1 https://github.com/rogermt/forgesyte-plugins.git forgesyte-plugins | |
| - name: Set up Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: "3.11" | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v7 | |
| - name: Install dependencies | |
| run: | | |
| cd server | |
| uv sync | |
| - name: Run execution scanner | |
| run: python scripts/scan_execution_violations.py | |
| - name: Run plugin registry tests | |
| run: | | |
| cd server | |
| uv run pytest tests/plugins -v | |
| - name: Run execution governance tests | |
| run: | | |
| cd server | |
| uv run pytest tests/execution -v | |