Added SeriesSort tag #32
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: XSD Validation | |
on: | |
push: | |
paths: | |
- '**.xsd' | |
pull_request: | |
paths: | |
- '**.xsd' | |
jobs: | |
validate: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: apt-get update | |
run: sudo apt-get update -y | |
- name: Install xmllint | |
run: sudo apt-get install -y libxml2-utils | |
- name: Validate XSD Schemas | |
run: find . -type f -name "*.xsd" -exec xmllint -noout -schema http://www.w3.org/2009/XMLSchema/XMLSchema.xsd {} + |