File tree Expand file tree Collapse file tree 2 files changed +26
-0
lines changed
Expand file tree Collapse file tree 2 files changed +26
-0
lines changed Original file line number Diff line number Diff line change 1+ # Workflow for link checking with lychee
2+ name : Link Check Source Files with Lychee
3+
4+ on :
5+ # Runs on pull requests targeting the dev branch
6+ pull_request :
7+ branches : ["dev"]
8+ # Allows you to run this workflow manually from the Actions tab
9+ workflow_dispatch :
10+
11+ jobs :
12+ link_check :
13+ runs-on : ubuntu-latest
14+ steps :
15+ - name : Checkout
16+ uses : actions/checkout@v4
17+
18+ - name : Link Checker
19+ id : lychee
20+ uses : lycheeverse/lychee-action@v2
21+ with :
22+ # NOTE: Lychee (and sphinx) encounter issues with SSL certificates for INCF URLs, so use --insecure
23+ args : --verbose --no-progress './content/**/*.md' './content/**/*.html' './content/**/*.rst' --insecure
Original file line number Diff line number Diff line change 33/public /**
44.hugo_build.lock
55/todo.md
6+
7+ # PyCharm
8+ .idea /
You can’t perform that action at this time.
0 commit comments