Skip to content

remove python3.9 / sphinx8 test #49

remove python3.9 / sphinx8 test

remove python3.9 / sphinx8 test #49

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
test:
name: Test Python ${{ matrix.python-version }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version:
- '3.9'
- '3.10'
- '3.11'
- '3.12'
- '3.13'
- pypy-3.10
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Cache
uses: actions/cache@v4
with:
path: ~/.cache/pip
key: pip-test-python-${{ matrix.python-version }}-${{ hashFiles('**/tox.ini', '**/pyproject.toml') }}
restore-keys: |
pip-test-python-${{ matrix.python-version }}-${{ hashFiles('**/tox.ini', '**/pyproject.toml') }}
pip-test-python-${{ matrix.python-version }}
pip-test-
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools wheel
python -m pip install --upgrade tox tox-gh-actions
- name: Tox tests
run: |
tox