validate LuaDoc XML as GitHub Workflow CI

This commit is contained in:
quietly-turning
2024-03-20 13:55:31 -04:00
committed by teejusb
parent 7ac42c7f73
commit 4f4fe7b540
+13
View File
@@ -72,3 +72,16 @@ jobs:
run: cmake -B build
- name: Build
run: cmake --build build
validate-xml-docs:
name: Validate Lua.xml, LuaDocumentation.xml
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: sudo apt-get update && sudo apt-get install -y
libxml2-utils
- name: Validate Lua.xml
run: xmllint --noout Docs/Luadoc/Lua.xml
- name: Validate LuaDocumentation.xml
run: xmllint --noout Docs/Luadoc/LuaDocumentation.xml