21 lines
466 B
YAML
21 lines
466 B
YAML
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."
|