From df0ee26f1fa3ec7c403bd02f03c8240dcdc97b04 Mon Sep 17 00:00:00 2001 From: Magnus Wahlberg Date: Wed, 22 Nov 2023 15:12:33 +0100 Subject: [PATCH] Update docs-tests.yml add linkcheck --- .github/workflows/docs-tests.yml | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/.github/workflows/docs-tests.yml b/.github/workflows/docs-tests.yml index 1650038f..bc85fe93 100644 --- a/.github/workflows/docs-tests.yml +++ b/.github/workflows/docs-tests.yml @@ -5,10 +5,19 @@ on: - pull_request jobs: - docs: + docs-build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - uses: ammaraskar/sphinx-action@0.4 with: - docs-folder: "docs/" \ No newline at end of file + docs-folder: "docs/" + + docs-link-check: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: ammaraskar/sphinx-action@0.4 + with: + docs-folder: "docs/" + build-command: "make linkcheck" \ No newline at end of file