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:
|
|
|
|
|
|
|
|
env:
|
|
|
|
FORCE_COLOR: 1
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
2022-07-31 06:34:28 -04:00
|
|
|
python-version: ["3.9", "3.10", "3.11-dev"]
|
2022-04-26 15:07:20 -04:00
|
|
|
os: [windows-latest, macos-latest, ubuntu-latest]
|
2022-07-31 06:34:28 -04:00
|
|
|
# lxml doesn't yet install for 3.11 on Windows
|
|
|
|
exclude:
|
|
|
|
- { python-version: "3.11-dev", os: windows-latest }
|
2022-04-26 15:07:20 -04:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
|
|
|
|
- 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
|
|
|
|
|
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
|
|
|
python -m pip install -U pip
|
|
|
|
python -m pip install -U wheel
|
|
|
|
python -m pip install -U tox
|
|
|
|
|
|
|
|
- name: Run tests with tox
|
|
|
|
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 }}
|