-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix replace linkcheck with https://linkchecker.github.io (#230)
* Switched to Python LinkChecker * Added push trigger * Fixed broken links * escaped dot * Added any character * Added check extern * Updated dead links * Removed onpush trigger
- Loading branch information
1 parent
28f4709
commit f0b232d
Showing
8 changed files
with
17 additions
and
19 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 |
---|---|---|
|
@@ -7,15 +7,13 @@ jobs: | |
runs-on: ubuntu-latest | ||
name: Check for broken links | ||
steps: | ||
- name: Check for broken links | ||
id: link-report | ||
uses: celinekurpershoek/[email protected] | ||
- name: Setup Python | ||
uses: actions/setup-python@v5 | ||
with: | ||
# Required: | ||
url: 'https://hupo-psi.github.io/mzQC/' | ||
# optional: | ||
honorRobotExclusions: false | ||
ignorePatterns: 'github,google,channel' | ||
recursiveLinks: false # Check all URLs on all reachable pages (could take a while) | ||
python-version: '3.10' | ||
- run: pip3 install linkchecker | ||
- name: Link Checker | ||
id: link-report | ||
run: linkchecker -ofailures --check-extern --ignore-url="\s*\.md" https://hupo-psi.github.io/mzQC/ | ||
- name: Get the result | ||
run: echo "${{steps.link-report.outputs.result}}" | ||
run: echo linkchecker/failures |
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
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
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
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