Skip to content

Commit

Permalink
Introduce Link checker action into pipeline (#206)
Browse files Browse the repository at this point in the history
  • Loading branch information
amarquezChili authored Nov 28, 2023
1 parent 4a41382 commit 10f3c16
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 10f3c16

Please sign in to comment.