From 49725c9ea446eef36c8b4aa3d70abce9eb162bb2 Mon Sep 17 00:00:00 2001 From: Quantum Date: Wed, 1 Sep 2021 19:15:35 -0400 Subject: [PATCH] [doc] ci: run CI build with spell check --- .github/workflows/build.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 88e49429..62367802 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -163,7 +163,8 @@ jobs: - name: Install docs dependencies run: | sudo apt-get install python3-sphinx + sudo pip3 install sphinxcontrib-spelling - name: Build docs run: | cd doc - make dirhtml -j$(nproc) + make dirhtml SPHINXOPTS='-b spelling -W' -j$(nproc)