1 parent de3af4a commit e5f3882Copy full SHA for e5f3882
1 file changed
.github/workflows/documentation-checks.yml
@@ -0,0 +1,26 @@
1
+name: Documentation checks
2
+
3
+on:
4
+ push:
5
+ pull_request:
6
+ workflow_dispatch:
7
8
+permissions:
9
+ contents: read
10
11
+concurrency:
12
+ group: docs-${{ github.workflow }}-${{ github.ref }}
13
+ cancel-in-progress: true
14
15
+jobs:
16
+ validate:
17
+ name: Validate documentation
18
+ runs-on: ubuntu-latest
19
+ timeout-minutes: 5
20
21
+ steps:
22
+ - name: Check out repository
23
+ uses: actions/checkout@v4
24
25
+ - name: Check required files and relative links
26
+ run: python .github/scripts/check_docs.py
0 commit comments