We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c141ef1 commit 8307872Copy full SHA for 8307872
1 file changed
.github/workflows/links.yaml
@@ -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