From b919218095d496863c73b5aacde393eb72dcc534 Mon Sep 17 00:00:00 2001 From: Torsten Kilias Date: Wed, 31 Jan 2024 17:42:10 +0100 Subject: [PATCH] Added link checker for the documentation --- .../workflows/check_documentation_links.yaml | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/check_documentation_links.yaml diff --git a/.github/workflows/check_documentation_links.yaml b/.github/workflows/check_documentation_links.yaml new file mode 100644 index 00000000..2f323d80 --- /dev/null +++ b/.github/workflows/check_documentation_links.yaml @@ -0,0 +1,23 @@ +name: Check Notebook Links + +on: + push: + branches-ignore: + - "main" + +jobs: + check_documentation_links: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + with: + fetch-depth: 0 + + - name: Link Checker + id: lychee + uses: lycheeverse/lychee-action@v1.9.0 + with: + fail: true + args: --verbose --no-progress 'doc/**/*.md' 'README.md' +