summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorNatalia <124304+nessita@users.noreply.github.com>2026-01-28 22:24:26 -0300
committernessita <124304+nessita@users.noreply.github.com>2026-01-29 11:20:11 -0300
commitf87c2055b45356378a7c2a020eb872352d20f85e (patch)
tree310c51154a81a2d534475db95551c39d436a432a /.github
parent117ff1d37d63cdfa0982eba6b636bf8f59d99a3c (diff)
Fixed spell checking in docs GitHub Actions workflow.
The spelling check job was passing even with spelling errors because the system spell checker (`aspell`) was not installed on the GitHub Actions runner. While `sphinxcontrib.spelling` and `PyEnchant` were installed via pip, they require a system-level spell checker backend to function.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/docs.yml2
1 files changed, 2 insertions, 0 deletions
diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml
index ffbb845088..09ec383a79 100644
--- a/.github/workflows/docs.yml
+++ b/.github/workflows/docs.yml
@@ -35,6 +35,8 @@ jobs:
python-version: '3.14'
cache: 'pip'
cache-dependency-path: 'docs/requirements.txt'
+ - name: Install system spell checker
+ run: sudo apt update && sudo apt install -y aspell aspell-en
- run: python -m pip install -r docs/requirements.txt
- name: Build docs
run: |