Validate remote manifest against local schema

This commit is contained in:
Maxwell Oldshein 2025-10-06 23:52:14 -04:00
parent eccdf80b95
commit 5735d01804
1 changed files with 4 additions and 0 deletions

View File

@ -83,6 +83,10 @@ jobs:
echo "changed_targets=$CHANGED" >> "$GITHUB_OUTPUT"
# --- The rest of the steps below are unchanged ---
- name: Validate remote manifest against local schema
if: steps.discover-modified.outputs.changed_targets != ''
run: |
poetry run pytest tests/test_manifest.py::test_validate_manifest_against_local_schema
- name: Validate modified targets
if: steps.discover-modified.outputs.changed_targets != ''