github actions: Drop HTML validation

Its seems `xmllint` is mainly an XML validator and not a HTML validator
and can't find a decent command line HTML validator.
This commit is contained in:
Erik de Castro Lopo 2021-03-15 09:41:49 +11:00
parent ae288c067c
commit 27c615706c
1 changed files with 0 additions and 6 deletions

View File

@ -145,9 +145,3 @@ jobs:
cmake .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_VERBOSE_MAKEFILE:BOOL=ON ${{ matrix.configure-opts }} -DCMAKE_FIND_FRAMEWORK=NEVER
cmake --build .
ctest -V
- name: Check documentation
if: startsWith(matrix.os,'ubuntu') && startsWith(matrix.build-system,'autotools')
run: |
xmllint --valid --noout doc/html/*.html;
xmllint --valid --noout doc/html/api/*.html;