Skip to content

Bump sphinx-autobuild from 2024.2.4 to 2024.4.16 #187

Bump sphinx-autobuild from 2024.2.4 to 2024.4.16

Bump sphinx-autobuild from 2024.2.4 to 2024.4.16 #187

Workflow file for this run

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