From 5735d01804626f20c8d23c82ec2ba16c67da74ca Mon Sep 17 00:00:00 2001 From: Maxwell Oldshein Date: Mon, 6 Oct 2025 23:52:14 -0400 Subject: [PATCH] Validate remote manifest against local schema --- .github/workflows/validate_modified_targets.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/validate_modified_targets.yml b/.github/workflows/validate_modified_targets.yml index bb244511..a613048c 100644 --- a/.github/workflows/validate_modified_targets.yml +++ b/.github/workflows/validate_modified_targets.yml @@ -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 != ''