From f87c2055b45356378a7c2a020eb872352d20f85e Mon Sep 17 00:00:00 2001 From: Natalia <124304+nessita@users.noreply.github.com> Date: Wed, 28 Jan 2026 22:24:26 -0300 Subject: [PATCH] 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. --- .github/workflows/docs.yml | 2 ++ 1 file changed, 2 insertions(+) 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: |