Automatically generate documentation for Server Process options #139
Workflow file for this run
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 is a GitHub workflow defining a set of jobs with a set of steps. ref: | |
# https://docs.github.com/en/actions/learn-github-actions/workflow-syntax-for-github-actions | |
# | |
name: Linkcheck | |
on: | |
pull_request: | |
paths: | |
- "docs/**" | |
- "**/linkcheck.yaml" | |
push: | |
paths: | |
- "docs/**" | |
- "**/linkcheck.yaml" | |
branches-ignore: | |
- "dependabot/**" | |
- "pre-commit-ci-update-config" | |
workflow_dispatch: | |
jobs: | |
linkcheck: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: "3.12" | |
- name: Install deps | |
run: pip install . -r docs/requirements.txt | |
- name: make linkcheck | |
run: | | |
cd docs | |
make linkcheck SPHINXOPTS='--color -W --keep-going' |