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.
1 parent 0c1adcc commit aaf4e7fCopy full SHA for aaf4e7f
.github/workflows/check-links.yml
@@ -1,4 +1,4 @@
1
-name: Links
+name: Check Links
2
3
on:
4
repository_dispatch:
@@ -20,8 +20,15 @@ jobs:
20
# We use --exclude '\.md(#.*)?$' to skip internal links in markdown like [See test](../tests/.../test_case.md)
21
# otherwise we get false positives due to links pointing to content that gets generated during our mkdocs flow.
22
# These links are checked during `mkdocs build --strict`
23
- args: lychee README.md src/**/*.py src/**/*.md tests/**/*.py tests/**/*.md docs/**/*.md --exclude '\.md(#.*)?$'
24
with:
+ args: >
25
+ README.md
26
+ src/**/*.py
27
+ src/**/*.md
28
+ tests/**/*.py
29
+ tests/**/*.md
30
+ docs/**/*.md
31
+ --exclude '\.md(#.*)?$'
32
fail: false
33
34
- name: Create Issue From File
0 commit comments