Skip to content

Added SeriesSort tag #32

Added SeriesSort tag

Added SeriesSort tag #32

Workflow file for this run

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 {} +