There was an error while loading. Please reload this page.
1 parent e2f7698 commit 34eafdcCopy full SHA for 34eafdc
1 file changed
.github/workflows/check-links.yml
@@ -0,0 +1,32 @@
1
+name: Check links
2
+
3
+on:
4
+ pull_request:
5
+ paths:
6
+ - "README.md"
7
+ - "docs/**"
8
+ - "scripts/check_links.py"
9
+ - "requirements.txt"
10
+ - "check-links.toml"
11
+ - ".github/workflows/check-links.yml"
12
+ push:
13
+ branches:
14
+ - master
15
16
17
18
19
20
21
22
+ workflow_dispatch:
23
24
+jobs:
25
+ check-links:
26
+ runs-on: ubuntu-latest
27
+ steps:
28
+ - uses: actions/checkout@v6
29
+ - name: Install dependencies
30
+ run: python -m pip install -r requirements.txt
31
+ - name: Check documentation links
32
+ run: python scripts/check_links.py --config check-links.toml --verbose
0 commit comments