From acca0112a2a3732f152dac2e6c9f82123daa0740 Mon Sep 17 00:00:00 2001 From: Tpt Date: Fri, 5 Jan 2024 11:32:51 +0100 Subject: [PATCH] Runs sphinx-lint in the CI --- .github/workflows/tests.yml | 2 ++ python/requirements.dev.txt | 1 + 2 files changed, 3 insertions(+) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 67153706..ee2ba4d0 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -280,6 +280,8 @@ jobs: working-directory: ./python - run: python -m ruff check --output-format=github . working-directory: ./python + - run: sphinx-lint docs + working-directory: ./python python_msv: runs-on: ubuntu-latest diff --git a/python/requirements.dev.txt b/python/requirements.dev.txt index 67eb7d2b..f260a9e9 100644 --- a/python/requirements.dev.txt +++ b/python/requirements.dev.txt @@ -3,3 +3,4 @@ maturin~=1.0 mypy~=1.0 ruff~=0.1.0 sphinx~=7.0 +sphinx-lint~=0.9.1