We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 252791f commit 494bbe4Copy full SHA for 494bbe4
1 file changed
.github/workflows/tests.yml
@@ -73,10 +73,6 @@ jobs:
73
with:
74
groups: doc
75
76
- - name: Check documentation links
77
- working-directory: docs
78
- run: uv run make linkcheck
79
-
80
- name: Build Documentation
81
working-directory: docs
82
run: uv run make dirhtml
@@ -91,8 +87,11 @@ jobs:
91
87
- name: Link Checker
92
88
uses: lycheeverse/lychee-action@v2
93
89
94
- args: --verbose --no-progress "README.md" "CONTRIBUTING.md" "CHANGELOG.md"
90
+ args: --verbose --no-progress "."
95
fail: true
+ env:
+ # This reduces false positive due to rate limits
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
96
97
mypy:
98
name: Run mypy
0 commit comments