Skip to content

update github workflow action #9

update github workflow action

update github workflow action #9

Workflow file for this run

name: Validate AMF Schema and Examples
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
validate:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Install xmllint
run: sudo apt-get update && apt-get install -y libxml2-utils
- name: Validate XML Files
run: |
for file in examples/*.amf; do
xmllint --noout --schema schema/acesMetadataFile.xsd $file
done