From 27c615706cedd252a206dd77e3910dfa395dcc49 Mon Sep 17 00:00:00 2001 From: Erik de Castro Lopo Date: Mon, 15 Mar 2021 09:41:49 +1100 Subject: [PATCH] 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. --- .github/workflows/action.yml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/.github/workflows/action.yml b/.github/workflows/action.yml index 9fd936f3..7f347d73 100644 --- a/.github/workflows/action.yml +++ b/.github/workflows/action.yml @@ -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;