Skip to content

Commit aa4cb22

Browse files
committed
Add links checking
1 parent a58d83b commit aa4cb22

1 file changed

Lines changed: 29 additions & 0 deletions

File tree

.github/workflows/links.yaml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Check links
2+
3+
on:
4+
pull_request:
5+
push:
6+
schedule:
7+
- cron: "0 6 * * 1"
8+
workflow_dispatch:
9+
10+
jobs:
11+
lychee:
12+
name: Links in Markdown files
13+
runs-on: ubuntu-latest
14+
15+
steps:
16+
- name: Check out repository
17+
uses: actions/checkout@v5
18+
19+
- name: Check links in Markdown files
20+
uses: lycheeverse/lychee-action@v2
21+
with:
22+
fail: true
23+
args: >-
24+
--verbose
25+
--no-progress
26+
--timeout 20
27+
--retry-wait-time 5
28+
--max-retries 2
29+
'./**/*.md'

0 commit comments

Comments
 (0)