We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
url_check.yml
1 parent 4d500fd commit b1f1581Copy full SHA for b1f1581
.github/workflows/url_check.yml
@@ -0,0 +1,29 @@
1
+---
2
+name: url_check
3
+
4
+'on':
5
+ workflow_dispatch:
6
+ push:
7
+ branches:
8
+ - master
9
+ pull_request:
10
+ schedule:
11
+ - cron: '43 5 * * TUE'
12
13
+jobs:
14
+ run_lychee:
15
+ runs-on: ubuntu-latest
16
17
+ steps:
18
+ - name: Checkout
19
+ uses: actions/checkout@v4
20
21
+ - name: Check links
22
+ id: link_check
23
+ uses: lycheeverse/[email protected]
24
+ with:
25
+ args: >
26
+ --no-progress
27
+ *
28
+ fail: true
29
+...
0 commit comments