Phase 0: per-call GatewayCallAudit on the canonical inference gateway… #24
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: governed-learning-lifecycle | |
| on: | |
| pull_request: | |
| paths: | |
| - "schemas/governed-learning-lifecycle-record.schema.json" | |
| - "schemas/governed-learning-review-queue-metrics.schema.json" | |
| - "examples/governed-learning/**" | |
| - "scripts/validate_governed_learning_lifecycle.py" | |
| - ".github/workflows/governed-learning-lifecycle.yml" | |
| - "Makefile" | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - "schemas/governed-learning-lifecycle-record.schema.json" | |
| - "schemas/governed-learning-review-queue-metrics.schema.json" | |
| - "examples/governed-learning/**" | |
| - "scripts/validate_governed_learning_lifecycle.py" | |
| - ".github/workflows/governed-learning-lifecycle.yml" | |
| - "Makefile" | |
| workflow_dispatch: | |
| jobs: | |
| validate-governed-learning-lifecycle: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.11" | |
| - name: Install validation dependency | |
| run: python -m pip install jsonschema | |
| - name: Validate governed learning lifecycle examples | |
| run: make validate-governed-learning-lifecycle |