rsyslog/.github/workflows/spellcheck.yml
Rainer Gerhards d6c87402be
ci: add spellcheck workflow
Add a GitHub Actions job using codespell to check Sphinx docs in doc/source.
This helps catch spelling errors early and improves documentation quality.

With help from AI-Agent: ChatGPT
2025-08-28 11:00:26 +02:00

17 lines
287 B
YAML

---
name: Spellcheck
'on':
pull_request:
jobs:
spellcheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install codespell
run: pip install codespell
- name: Check spelling in docs
run: |
codespell doc/source