fix: Run tests on Actual 24.11.0, drop version 24.8.0 #2
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: Try building the documentation to prevent cross-reference issues | |
on: | |
pull_request: | |
jobs: | |
try-build-docs: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: "3.11" | |
- name: Install project dependencies | |
run: python3 -m pip install --user -r docs/requirements.txt | |
- name: Try building the documentation | |
run: mkdocs build |