Skip to content

Removed all ECG ignored errors #421

Removed all ECG ignored errors

Removed all ECG ignored errors #421

Workflow file for this run

name: XML Syntax
on:
push:
pull_request:
workflow_call:
workflow_dispatch:
jobs:
syntax_xml:
name: XML Validation
runs-on: [ubuntu-latest]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Update APT repositories
run: "sudo apt update"
- name: Install xmllint
run: "sudo apt-get -y install libxml2-utils"
- name: Validate XMLs
run: "find . -type f -iname '*.xml' | xargs -I '{}' xmllint --noout '{}'"