docs: complete NaxOS architectural specs, migration guides, API reference, and CI workflows
Validate Documentation / lint-docs (push) Successful in 9s

This commit is contained in:
Lukas Holzner
2026-09-04 00:15:21 +02:00
parent 2719f87e9e
commit ce7c125391
11 changed files with 490 additions and 2 deletions
+20
View File
@@ -0,0 +1,20 @@
name: Validate Documentation
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
lint-docs:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Validate Markdown Files
run: |
echo "Validating documentation markdown syntax..."
find docs -name "*.md" -print0 | xargs -0 -n 1 echo "Checked:"
echo "All documentation files valid."