2022-04-26 15:07:20 -04:00
|
|
|
name: Test Sphinx Extensions
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
paths:
|
|
|
|
- ".github/workflows/test.yml"
|
|
|
|
- "pep_sphinx_extensions/**"
|
|
|
|
- "tox.ini"
|
|
|
|
pull_request:
|
|
|
|
paths:
|
|
|
|
- ".github/workflows/test.yml"
|
|
|
|
- "pep_sphinx_extensions/**"
|
|
|
|
- "tox.ini"
|
|
|
|
workflow_dispatch:
|
|
|
|
|
2023-08-05 08:24:46 -04:00
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
2022-04-26 15:07:20 -04:00
|
|
|
env:
|
|
|
|
FORCE_COLOR: 1
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
2023-08-05 08:24:46 -04:00
|
|
|
python-version:
|
|
|
|
- "3.9"
|
|
|
|
- "3.10"
|
|
|
|
- "3.11"
|
2023-10-30 11:23:14 -04:00
|
|
|
- "3.12"
|
|
|
|
- "3.13"
|
2023-08-05 08:24:46 -04:00
|
|
|
os:
|
|
|
|
- "windows-latest"
|
|
|
|
- "macos-latest"
|
|
|
|
- "ubuntu-latest"
|
2022-04-26 15:07:20 -04:00
|
|
|
|
|
|
|
steps:
|
2023-09-05 00:08:14 -04:00
|
|
|
- uses: actions/checkout@v4
|
2022-04-26 15:07:20 -04:00
|
|
|
- name: Set up Python ${{ matrix.python-version }}
|
2022-07-31 06:34:28 -04:00
|
|
|
uses: actions/setup-python@v4
|
2022-04-26 15:07:20 -04:00
|
|
|
with:
|
|
|
|
python-version: ${{ matrix.python-version }}
|
|
|
|
cache: pip
|
2023-10-30 11:23:14 -04:00
|
|
|
allow-prereleases: true
|
2022-04-26 15:07:20 -04:00
|
|
|
|
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
|
|
|
python -m pip install -U pip
|
|
|
|
python -m pip install -U wheel
|
|
|
|
python -m pip install -U tox
|
|
|
|
|
2023-08-05 08:24:46 -04:00
|
|
|
- name: Run tests
|
2022-04-26 15:07:20 -04:00
|
|
|
run: |
|
|
|
|
tox -e py -- -v --cov-report term
|
|
|
|
|
|
|
|
- name: Upload coverage
|
|
|
|
uses: codecov/codecov-action@v3
|
|
|
|
with:
|
|
|
|
flags: ${{ matrix.os }}
|
|
|
|
name: ${{ matrix.os }} Python ${{ matrix.python-version }}
|