diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2023-06-18 12:21:34 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-18 12:21:34 (GMT) |
commit | 6baddd9fb25e03040c1c07c410eae834463874d1 (patch) | |
tree | 08a8dcc6a87e38e964076672106cbb329610f58a /.github | |
parent | b34f1df5fa2a8745d6d54e93e5b54624abd65c30 (diff) | |
download | cpython-6baddd9fb25e03040c1c07c410eae834463874d1.zip cpython-6baddd9fb25e03040c1c07c410eae834463874d1.tar.gz cpython-6baddd9fb25e03040c1c07c410eae834463874d1.tar.bz2 |
[3.12] Docs: move sphinx-lint to pre-commit (GH-105750) (#105894)
Docs: move sphinx-lint to pre-commit (GH-105750)
(cherry picked from commit bc07c8f096791d678ca5c1e3486cb9648f7a027b)
Co-authored-by: Hugo van Kemenade <hugovk@users.noreply.github.com>
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/doc.yml | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/.github/workflows/doc.yml b/.github/workflows/doc.yml index ec900ce..3211b52 100644 --- a/.github/workflows/doc.yml +++ b/.github/workflows/doc.yml @@ -51,8 +51,6 @@ jobs: cache-dependency-path: 'Doc/requirements.txt' - name: 'Install build dependencies' run: make -C Doc/ venv - - name: 'Check documentation' - run: make -C Doc/ check - name: 'Build HTML documentation' run: make -C Doc/ SPHINXOPTS="-q" SPHINXERRORHANDLING="-W --keep-going" html @@ -82,8 +80,6 @@ jobs: make -C Doc/ PYTHON=../python SPHINXOPTS="-q -n -W --keep-going" html 2>&1 # This build doesn't use problem matchers or check annotations - # It also does not run 'make check', as sphinx-lint is not installed into the - # environment. build_doc_oldest_supported_sphinx: name: 'Docs (Oldest Sphinx)' runs-on: ubuntu-latest |