We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8ba824f commit 9631517Copy full SHA for 9631517
1 file changed
.github/workflows/tests.yml
@@ -81,6 +81,19 @@ jobs:
81
working-directory: docs
82
run: uv run make dirhtml
83
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
97
mypy:
98
name: Run mypy
99
runs-on: ubuntu-latest
0 commit comments