PR - Add 'hide' support and a new meta-data option to List2need directive #861
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
name: Docs CI | |
on: | |
pull_request: | |
paths: [docs/**] | |
jobs: | |
linkcheck: | |
name: Docs-Linkcheck | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set Up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.10" | |
- name: Update pip | |
run: python -m pip install --upgrade pip | |
- name: Install Dependencies | |
run: | | |
python -m pip install -e .[docs] | |
- name: Run linkcheck | |
run: sphinx-build -b linkcheck . _build | |
working-directory: docs |