From 102e8395c82b515fac3e5bbf61256bb02b9d1a6e Mon Sep 17 00:00:00 2001 From: Simon Martens <61149221+Simon-Martens@users.noreply.github.com> Date: Wed, 17 Jul 2024 19:55:21 +0200 Subject: [PATCH] Update XML_lint.yml --- .github/workflows/XML_lint.yml | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/.github/workflows/XML_lint.yml b/.github/workflows/XML_lint.yml index f0f74cc..fdb32f1 100644 --- a/.github/workflows/XML_lint.yml +++ b/.github/workflows/XML_lint.yml @@ -9,7 +9,7 @@ on: - 'XML/**/*.xml' jobs: - Verweise: + XSD-Schema: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 @@ -27,5 +27,20 @@ jobs: - name: XSD-Schema-Validierung run: python Scripts/lint_validation.py + 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: Verweise prüfen run: python Scripts/lint_verweise.py