From a93eb00e7e4aa3c2e7f15304069923ea54dc69b2 Mon Sep 17 00:00:00 2001 From: Chris Clark Date: Mon, 21 Jul 2025 13:22:16 -0700 Subject: [PATCH] updated git workflow to search for AMFs recursively --- .github/workflows/validate-xml.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/validate-xml.yml b/.github/workflows/validate-xml.yml index 08e58c6..d195908 100644 --- a/.github/workflows/validate-xml.yml +++ b/.github/workflows/validate-xml.yml @@ -21,6 +21,7 @@ jobs: - name: Validate XML Files run: | - for file in examples/*.amf; do - xmllint --noout --schema schema/acesMetadataFile.xsd $file + shopt -s globstar + for file in examples/**/*.amf; do + xmllint --noout --schema schema/acesMetadataFile.xsd "$file" done