Merge pull request #2621 from MaxwellOldshein/feat/validate-remote-manifest-with-local-schema-before-validate-target-test-suite
feat: GitHub Actions - Validate Remote Manifest Against Local Schema Before Running Validate Modified Targets Test Suite
This commit is contained in:
commit
1be25e70df
|
|
@ -82,6 +82,11 @@ jobs:
|
||||||
echo -e ">>> Changed targets: \n$(echo $CHANGED | tr ',' '\n')"
|
echo -e ">>> Changed targets: \n$(echo $CHANGED | tr ',' '\n')"
|
||||||
echo "changed_targets=$CHANGED" >> "$GITHUB_OUTPUT"
|
echo "changed_targets=$CHANGED" >> "$GITHUB_OUTPUT"
|
||||||
|
|
||||||
|
- 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
|
||||||
|
|
||||||
# --- The rest of the steps below are unchanged ---
|
# --- The rest of the steps below are unchanged ---
|
||||||
|
|
||||||
- name: Validate modified targets
|
- name: Validate modified targets
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue