Begin XML Schema Validator

This commit is contained in:
2025-04-05 23:15:39 +02:00
parent 0e2cca2e4f
commit 55a920414d
21 changed files with 798 additions and 2 deletions

View File

@@ -4,11 +4,13 @@ set -euo pipefail
declare -A FILTER_SETS=(
["py"]="-f .*(\\.py|requirements.txt)$"
["rust"]="-f .*\\.(rs|toml)$"
["web"]="-f .*\\.(js|jsx|json|css|html)$"
["doc"]="-f .*\\.md$"
["deploy"]="-f .*(Dockerfile|\\.sh|\\.xsd|\\.yaml)$"
["deploy"]="-f .*(Dockerfile|\\.sh|\\.xsd|\\.yaml|\\akefile)$"
["core"]="-s py ./sia ./tools -s deploy . -f ^(?!procedures/).*\\.md$ ."
["lib"]="-s rust . -s py . -s doc . -s deploy ."
["webui"]="-s web ./web"
["tests"]="-s py ./test"
["procedures"]="-s doc ./procedures"