Files
KGPZ/.github/workflows/XML_lint.yml
2024-07-17 19:48:11 +02:00

32 lines
605 B
YAML

name: XML prüfen
on:
push:
paths:
- 'XML/**/*.xml'
pull_request:
paths:
- 'XML/**/*.xml'
jobs:
Verweise:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Python-Setup
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Abhängigkeiten installieren
run: |
python -m pip install --upgrade pip
pip install lxml
- name: XSD-Schema-Validierung
run: python Scripts/lint_validation.py
- name: Verweise prüfen
run: python Scripts/lint_verweise.py