Bump sphinx-autobuild from 2024.2.4 to 2024.4.16 #187
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: test_docs_build | |
on: | |
# Trigger on pull requests against the master branch | |
pull_request: | |
branches: | |
- main | |
jobs: | |
test_docs_build: | |
runs-on: ubuntu-latest | |
strategy: | |
# Spawn and run a job for each of two supported Python 3.x versions | |
matrix: | |
python: ["3.10", "3.11"] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up a version of Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python }} | |
- name: Upgrade pip and install Tox | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install tox | |
- name: Run tests using Tox | |
run: tox -e py |