Skip to content

Commit

Permalink
docs: Check links
Browse files Browse the repository at this point in the history
Use a GitHub Action to verify the presence of broken links in `.rst` and
`.md` files.

Signed-off-by: Dimitris Poulopoulos <[email protected]>
  • Loading branch information
dpoulopoulos committed Dec 20, 2024
1 parent fb8f180 commit 5e3503a
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/documentation.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Check links
id: lychee
uses: lycheeverse/lychee-action@v2
with:
# Documentation: https://github.com/lycheeverse/lychee?tab=readme-ov-file#commandline-parameters
args: --base . --verbose --no-progress './**/*.md' './**/*.rst' --exclude 'mailto:|localhost'
- uses: actions/setup-python@v3
- name: Install dependencies
run: |
Expand Down

0 comments on commit 5e3503a

Please sign in to comment.