forked from canonical/cloud-init
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[enhancement]: Automatically linkcheck in CI (canonical#4479)
Signed-off-by: Aviral Singh <itsaviral.2609@gmail.com> Fixes canonicalGH-4460
- Loading branch information
1 parent
6ed6b69
commit 3d629fc
Showing
3 changed files
with
58 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
name: linkcheck in CI | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: {} | ||
workflow_dispatch: | ||
inputs: | ||
failOnError: | ||
description: 'Fail job on link check error' | ||
required: false | ||
default: 'false' | ||
|
||
jobs: | ||
linkcheck: | ||
runs-on: ubuntu-22.04 | ||
continue-on-error:${{ github.event_name == 'workflow_dispatch' && github.event.inputs.failOnError == 'true' ? false : true }} | ||
|
||
steps: | ||
- name: Checkout Repository | ||
uses: actions/checkout@v3.0.0 | ||
|
||
- name: "Install Python 3.10" | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: '3.10.8' | ||
|
||
- name: Install tox | ||
run: pip install tox | ||
|
||
- name: Run Sphinx linkcheck | ||
run: tox -e linkcheck | tee output.txt | ||
|
||
- name: Check for broken links below threshold 6 | ||
run: | | ||
broken_count=$(grep -c "broken" output.txt) | ||
if [[ $broken_count -ge 3 ]]; then | ||
echo "Too many broken links detected: $broken_count" | ||
exit 1 | ||
else | ||
echo "Number of broken links is below threshold: $broken_count" | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -63,6 +63,7 @@ impl | |
Indrranil | ||
irishgordo | ||
ITJamie | ||
itsaviral2609 | ||
ixjhuang | ||
izzyleung | ||
j5awry | ||
|