Skip to content

Commit 9631517

Browse files
committed
add link checking for md files.
1 parent 8ba824f commit 9631517

1 file changed

Lines changed: 13 additions & 0 deletions

File tree

.github/workflows/tests.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,19 @@ jobs:
8181
working-directory: docs
8282
run: uv run make dirhtml
8383

84+
linkChecker:
85+
name: Check links in Markdown files
86+
runs-on: ubuntu-latest
87+
steps:
88+
- name: Checkout code
89+
uses: actions/checkout@v4
90+
91+
- name: Link Checker
92+
uses: lycheeverse/lychee-action@v1.9.0
93+
with:
94+
args: --verbose --no-progress "README.md" "CONTRIBUTING.md" "CHANGELOG.md"
95+
fail: true
96+
8497
mypy:
8598
name: Run mypy
8699
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)