We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 679d01d commit 9a2cd93Copy full SHA for 9a2cd93
2 files changed
.github/workflows/pre-commit.yml
@@ -19,6 +19,17 @@ jobs:
19
post_comment: false
20
fail_on_find: true
21
22
+ link-check:
23
+ if: github.repository == 'learning-process/parallel_programming_course'
24
+ runs-on: ubuntu-24.04
25
+ steps:
26
+ - uses: actions/checkout@v6
27
+ - name: Check links
28
+ uses: lycheeverse/lychee-action@v2
29
+ with:
30
+ fail: true
31
+ failIfEmpty: false
32
+
33
pre-commit:
34
needs: check-file-sizes
35
runs-on: ubuntu-24.04
.lycheeignore
@@ -0,0 +1,3 @@
1
+# Ignore URL-encoded Jinja template placeholders from Sphinx HTML templates.
2
+# These are not real links and are resolved only during docs build.
3
+file://.*/%7B%7B.*%7D%7D.*
0 commit comments