Skip to content

v0.16.7: Increase test coverage and fix legacy test paths #337

v0.16.7: Increase test coverage and fix legacy test paths

v0.16.7: Increase test coverage and fix legacy test paths #337

Workflow file for this run

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