-
-
Notifications
You must be signed in to change notification settings - Fork 18.6k
Create broken-linkcheck.yml #55246
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Create broken-linkcheck.yml #55246
Changes from all commits
Commits
Show all changes
53 commits
Select commit
Hold shift + click to select a range
672c258
Create broken-linkcheck.yml
ggold7046 f355cdf
Update broken-linkcheck.yml
ggold7046 a8fc4bd
Update broken-linkcheck.yml
ggold7046 d7d9ba0
Update broken-linkcheck.yml
ggold7046 53f7a2e
Update broken-linkcheck.yml
ggold7046 6987819
Update broken-linkcheck.yml
ggold7046 2d15e1f
Update .github/workflows/broken-linkcheck.yml
ggold7046 4e40611
Update .github/workflows/broken-linkcheck.yml
ggold7046 d486c3e
Update .github/workflows/broken-linkcheck.yml
ggold7046 69eaa34
Update .github/workflows/broken-linkcheck.yml
ggold7046 86b7c9c
Update broken-linkcheck.yml
ggold7046 a037a9b
Update broken-linkcheck.yml
ggold7046 fc821e5
Update broken-linkcheck.yml
ggold7046 a902099
Update .github/workflows/broken-linkcheck.yml
ggold7046 8484c63
Update broken-linkcheck.yml
ggold7046 d56f2c5
Update .github/workflows/broken-linkcheck.yml
ggold7046 b50eea2
Update .github/workflows/broken-linkcheck.yml
ggold7046 60f1655
Update broken-linkcheck.yml
ggold7046 3a35cd6
Update broken-linkcheck.yml
ggold7046 a602153
Update .github/workflows/broken-linkcheck.yml
ggold7046 ef26ad7
Update broken-linkcheck.yml
ggold7046 55afa65
Update .github/workflows/broken-linkcheck.yml
ggold7046 84fe04c
Update conf.py
ggold7046 1193567
Update conf.py
ggold7046 b54a6eb
Update doc/source/conf.py
ggold7046 787642d
Update conf.py
ggold7046 84f5dc4
Update conf.py
ggold7046 5d7bbf0
Update conf.py
ggold7046 bf443a6
Update conf.py
ggold7046 cd90793
Update conf.py
ggold7046 10d9259
Update conf.py
ggold7046 eb3daab
Update broken-linkcheck.yml
ggold7046 e19e2d1
Update doc/source/conf.py
ggold7046 7099cea
Update conf.py
ggold7046 36beaed
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] 184d54b
Merge branch 'main' into patch-1
ggold7046 faab0e2
Update .github/workflows/broken-linkcheck.yml
ggold7046 2d355f3
Update .github/workflows/broken-linkcheck.yml
ggold7046 d148d53
Update .github/workflows/broken-linkcheck.yml
ggold7046 b6d3825
Update conf.py
ggold7046 9190aec
Update .github/workflows/broken-linkcheck.yml
ggold7046 4f7f305
Update conf.py
ggold7046 930350f
Merge branch 'main' into patch-1
ggold7046 fb086ea
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] a88d02c
Update conf.py
ggold7046 8b62ee3
Update conf.py
ggold7046 6231fd2
Update conf.py
ggold7046 07ceac4
Merge branch 'main' into patch-1
ggold7046 f4e9d1c
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] fa68f06
Merge branch 'main' into patch-1
ggold7046 368b4bc
Update .github/workflows/broken-linkcheck.yml
ggold7046 0b22bea
Update broken-linkcheck.yml
ggold7046 c36aa09
Update conf.py
ggold7046 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,38 @@ | ||
name: Linkcheck | ||
on: | ||
schedule: | ||
# Run monthly on the 1st day of the month | ||
- cron: '0 0 1 * *' | ||
pull_request: | ||
paths: | ||
- ".github/workflows/broken-linkcheck.yml" | ||
- "doc/make.py" | ||
jobs: | ||
linkcheck: | ||
runs-on: ubuntu-latest | ||
defaults: | ||
run: | ||
shell: bash -el {0} | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Set up Conda | ||
uses: ./.github/actions/setup-conda | ||
|
||
- name: Build Pandas | ||
uses: ./.github/actions/build_pandas | ||
|
||
ggold7046 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
- name: Run linkcheck script | ||
working-directory: ./doc | ||
run: | | ||
set -o pipefail | ||
python make.py linkcheck | tee linkcheck.txt | ||
|
||
- name: Display broken links | ||
if: failure() | ||
working-directory: ./doc | ||
run: grep broken linkcheck.txt |
This file contains hidden or 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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.