Skip to content

try updated workflow #26

try updated workflow

try updated workflow #26

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Tests
on:
push:
pull_request:
jobs:
build-sphinx-8:
name: Build
strategy:
fail-fast: false
matrix:
python-version: [ "3.10", "3.11", "3.12" ]
sphinx-version: [
"8.0.*",
]
uses: ./.github/workflows/build.yml
with:
python-version: ${{ matrix.python-version }}
build-sphinx-72:
name: Build Sphinx 7.2
strategy:
fail-fast: false
matrix:
python-version: [ "3.9", "3.10", "3.11", "3.12" ]
sphinx-version: [
"7.2.*",
]
uses: ./.github/workflows/build.yml
with:
python-version: ${{ matrix.python-version }}
build-sphinx-5plus:
name: Build
strategy:
fail-fast: false
matrix:
python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12" ]
sphinx-version: [
"7.0.*", "7.1.*",
"6.0.*",
"5.0.*",
]
uses: ./.github/workflows/build.yml
with:
python-version: ${{ matrix.python-version }}
build-sphinx-4:
name: Build
strategy:
fail-fast: false
matrix:
python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12" ]
sphinx-version: [
"4.5", "4.4", "4.3", "4.2", "4.1", "4.0.*",
]
uses: ./.github/workflows/build.yml
with:
python-version: ${{ matrix.python-version }}
extra-requirements: '\
"sphinxcontrib-applehelp<1.0.8"
"sphinxcontrib-devhelp<1.0.6"
"sphinxcontrib-htmlhelp<2.0.5"
"sphinxcontrib-jsmath<1.0.1"
"sphinxcontrib-qthelp<1.0.7"
"sphinxcontrib-serializinghtml<1.1.10"'
build-sphinx-3:
name: Build
strategy:
fail-fast: false
matrix:
python-version: [ "3.7", "3.8", "3.9" ]
sphinx-version: [
"3.5.*", "3.4.*", "3.2.*", "3.1.*", "3.0.*",
]
uses: ./.github/workflows/build.yml
with:
python-version: ${{ matrix.python-version }}
extra-requirements: '\
"jinja2<3.1"
"sphinxcontrib-applehelp<1.0.8"
"sphinxcontrib-devhelp<1.0.6"
"sphinxcontrib-htmlhelp<2.0.5"
"sphinxcontrib-jsmath<1.0.1"
"sphinxcontrib-qthelp<1.0.7"
"sphinxcontrib-serializinghtml<1.1.10"'