diff options
| author | Melvin Keskin <melvo@olomono.de> | 2022-10-10 17:36:09 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-10-10 17:36:09 +0200 |
| commit | 88812716073e5f6941843a6f0778319be889dd3b (patch) | |
| tree | 9725619525c0ad4e9e87c3f21f5ff9b848660fa4 /.github/workflows | |
| parent | b020af2439342e3f748ecdcad6d4db4d5a8a2880 (diff) | |
| download | qxmpp-88812716073e5f6941843a6f0778319be889dd3b.tar.gz | |
ci: Add XML syntax test (#493)
Tests DOAP and other xml files.
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/tests.yml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index cc1d7ebd..6cccb5f7 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -49,6 +49,12 @@ jobs: - uses: codecov/codecov-action@v1 with: token: ${{ secrets.CODECOV_TOKEN }} + xmllint: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - run: sudo apt update && sudo apt install -y libxml2-utils + - run: xmllint --noout $(find . -type f -name *.xml) reuse: runs-on: ubuntu-latest steps: |
