Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
BramVerniest committed Nov 30, 2023
2 parents 53760fa + 10f3c16 commit aa7d5c3
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/lychee-link-checker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Links checker

on:
push:
pull_request:

jobs:
linkChecker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Link Checker
uses: lycheeverse/[email protected]
with:
# All supported file formats to be verified and accept 403 (Forbidden) as correct link
args: --verbose -a 200,202,403 './**/*.md' './**/*.html' './**/*.rst' --exclude '^https:\/\/cp'
format: markdown
# Add job summary in github action
jobSummary: true
# Fail job if one or more links are failing
fail: true



0 comments on commit aa7d5c3

Please sign in to comment.