Skip to content

Merge pull request #958 from sphinx-contrib/use-doctest-container-for… #971

Merge pull request #958 from sphinx-contrib/use-doctest-container-for…

Merge pull request #958 from sphinx-contrib/use-doctest-container-for… #971

Workflow file for this run

# Action which validates the ability to build this extension against multiple
# versions of Sphinx using various Python interpreters.
name: Build
on:
push:
branches:
- main
paths:
- '.github/workflows/build.yml'
- 'sphinxcontrib/**'
- 'tests/**'
- '.pylintrc'
- 'MANIFEST.in'
- 'pyproject.toml'
- 'requirements_dev.txt'
- 'ruff.toml'
- 'tox.ini'
pull_request:
branches:
- main
paths:
- '.github/workflows/build.yml'
- 'sphinxcontrib/**'
- 'tests/**'
- '.pylintrc'
- 'MANIFEST.in'
- 'pyproject.toml'
- 'requirements_dev.txt'
- 'ruff.toml'
- 'tox.ini'
jobs:
build:
name: ${{ matrix.toxenv }} (${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
# test each python/sphinx pair supported
- { os: ubuntu-latest, python: "3.8", toxenv: py38-sphinx61, cache: ~/.cache/pip }
- { os: ubuntu-latest, python: "3.8", toxenv: py38-sphinx62, cache: ~/.cache/pip }
- { os: ubuntu-latest, python: "3.8", toxenv: py38-sphinx70, cache: ~/.cache/pip }
- { os: ubuntu-latest, python: "3.8", toxenv: py38-sphinx71, cache: ~/.cache/pip }
- { os: ubuntu-latest, python: "3.9", toxenv: py39-sphinx61, cache: ~/.cache/pip }
- { os: ubuntu-latest, python: "3.9", toxenv: py39-sphinx62, cache: ~/.cache/pip }
- { os: ubuntu-latest, python: "3.9", toxenv: py39-sphinx70, cache: ~/.cache/pip }
- { os: ubuntu-latest, python: "3.9", toxenv: py39-sphinx71, cache: ~/.cache/pip }
- { os: ubuntu-latest, python: "3.9", toxenv: py39-sphinx72, cache: ~/.cache/pip }
- { os: ubuntu-latest, python: "3.10", toxenv: py310-sphinx61, cache: ~/.cache/pip }
- { os: ubuntu-latest, python: "3.10", toxenv: py310-sphinx62, cache: ~/.cache/pip }
- { os: ubuntu-latest, python: "3.10", toxenv: py310-sphinx70, cache: ~/.cache/pip }
- { os: ubuntu-latest, python: "3.10", toxenv: py310-sphinx71, cache: ~/.cache/pip }
- { os: ubuntu-latest, python: "3.10", toxenv: py310-sphinx72, cache: ~/.cache/pip }
- { os: ubuntu-latest, python: "3.11", toxenv: py311-sphinx61, cache: ~/.cache/pip }
- { os: ubuntu-latest, python: "3.11", toxenv: py311-sphinx62, cache: ~/.cache/pip }
- { os: ubuntu-latest, python: "3.11", toxenv: py311-sphinx70, cache: ~/.cache/pip }
- { os: ubuntu-latest, python: "3.11", toxenv: py311-sphinx71, cache: ~/.cache/pip }
- { os: ubuntu-latest, python: "3.11", toxenv: py311-sphinx72, cache: ~/.cache/pip }
- { os: ubuntu-latest, python: "3.12", toxenv: py312-sphinx61, cache: ~/.cache/pip }
- { os: ubuntu-latest, python: "3.12", toxenv: py312-sphinx62, cache: ~/.cache/pip }
- { os: ubuntu-latest, python: "3.12", toxenv: py312-sphinx70, cache: ~/.cache/pip }
- { os: ubuntu-latest, python: "3.12", toxenv: py312-sphinx71, cache: ~/.cache/pip }
- { os: ubuntu-latest, python: "3.12", toxenv: py312-sphinx72, cache: ~/.cache/pip }
# other OSes
# - test against all other supported OSes, using most recent interpreter/sphinx
- { os: macos-latest, python: "3.12", toxenv: py312-sphinx72, cache: ~/Library/Caches/pip }
- { os: windows-latest, python: "3.12", toxenv: py312-sphinx72, cache: ~\AppData\Local\pip\Cache }
# linting
# - any OS, using most recent interpreter
- { os: ubuntu-latest, python: "3.12", toxenv: ruff, cache: ~/.cache/pip }
- { os: ubuntu-latest, python: "3.12", toxenv: pylint, cache: ~/.cache/pip }
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- name: Cache pip
uses: actions/cache@v4
id: cache-pip
with:
path: ${{ matrix.cache }}
key: ${{ matrix.os }}-${{ matrix.python }}-pip-
- name: Install dependencies
run: python -m pip install --upgrade tox
- name: tox
env:
TOXENV: ${{ matrix.toxenv }}
run: tox