Skip to content
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

Add link check workflow for index #27

Merged
merged 1 commit into from
Jan 9, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions .github/workflows/linkcheck.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Link check

# Allow to trigger on pull requests and manually via Github Actions
on:
pull_request:
workflow_dispatch:

jobs:
build:
# Use Ubuntu as environment
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1
# This external action cares about all the sphinx stuff
- uses: ammaraskar/[email protected]
with:
build-command: "sphinx-build -b linkcheck source/ build/"
docs-folder: "docs/"

5 changes: 5 additions & 0 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,8 @@
]
html_show_sourcelink = False
html_use_index = False

# -- Options for the linkcheck builder ---------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-the-linkcheck-builder

linkcheck_anchors = False
Loading