From 6b45be1afcaf31ec6969fb190273d412fe7df71b Mon Sep 17 00:00:00 2001 From: Andrew Imeson Date: Wed, 22 Mar 2023 12:46:22 -0400 Subject: [PATCH] CI: Check for broken links in docs --- .github/workflows/ci.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index a49141d..d99696e 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -29,6 +29,8 @@ jobs: - run: rstcheck --ignore-directives automodule $(git ls-files '*.rst') - run: yamllint --strict $(git ls-files '*.yaml' '*.yml') - run: python setup.py build_sphinx + - name: Check for broken links in documentation + run: make -C docs linkcheck test: name: Tests