Skip to content

Commit

Permalink
Added link checker for the documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
tkilias committed Jan 31, 2024
1 parent 13b6fb5 commit b919218
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/check_documentation_links.yaml
Original file line number Diff line number Diff line change
@@ -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/[email protected]
with:
fail: true
args: --verbose --no-progress 'doc/**/*.md' 'README.md'

0 comments on commit b919218

Please sign in to comment.