diff options
| author | Natalia <124304+nessita@users.noreply.github.com> | 2026-01-28 22:24:26 -0300 |
|---|---|---|
| committer | nessita <124304+nessita@users.noreply.github.com> | 2026-01-29 11:20:11 -0300 |
| commit | f87c2055b45356378a7c2a020eb872352d20f85e (patch) | |
| tree | 310c51154a81a2d534475db95551c39d436a432a /.github/workflows | |
| parent | 117ff1d37d63cdfa0982eba6b636bf8f59d99a3c (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/workflows')
| -rw-r--r-- | .github/workflows/docs.yml | 2 |
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: | |
