Skip to content

Make schema checks more strict #36

Make schema checks more strict

Make schema checks more strict #36

Workflow file for this run

name: check
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: sudo apt -y install libxml2-utils
- run: |
if [ -f manifest.xsd ]; then
xmllint --noout --schema manifest.xsd *.xml
else
xmllint --noout *.xml
fi