mirror of
https://github.com/rsyslog/rsyslog.git
synced 2025-12-16 06:20:41 +01:00
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
17 lines
287 B
YAML
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
|