Subject id search #3868
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: Validate internal documentation links | |
"on": [pull_request] | |
jobs: | |
tests: | |
name: mkdocs serve strict | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.11 | |
- name: Install deps | |
run: | | |
pip install --upgrade --upgrade-strategy eager -r requirements-dev.txt -e . | |
pip check | |
- name: launch mkdocs in strict mode | |
run: mkdocs build --strict | |