Add Woodpecker CI pipeline for YAML/JSON validation

This commit is contained in:
2026-06-11 22:28:17 +10:00
parent 2f92d24506
commit da3c0fd97e
+12
View File
@@ -0,0 +1,12 @@
when:
- event: pull_request
steps:
- name: validate
image: python:3.12-alpine
commands:
- pip install --quiet yamllint
- yamllint -d relaxed skills/
- python -m json.tool schemas/subtask-request.json > /dev/null
- python -m json.tool schemas/subtask-status.json > /dev/null
- echo "All skills and schemas valid"