CI: test with Python 3.13 #184
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: test | |
on: [push, pull_request] | |
jobs: | |
test: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
python-version: [3.8, 3.9, '3.10', 3.11, '3.12', '3.13', 'pypy-3.9'] | |
exclude: | |
# hangs | |
- os: macos-latest | |
python-version: pypy-3.9 | |
- os: windows-latest | |
python-version: pypy-3.9 | |
include: | |
- os: ubuntu-latest | |
python-version: 3.8 | |
build-docs: true | |
- os: ubuntu-latest | |
python-version: 3.11 | |
build-docs: true | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install poetry | |
run: pipx install poetry | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
cache: 'poetry' | |
allow-prereleases: true | |
- name: Install dependencies | |
run: | | |
poetry install | |
- name: Run tests | |
run: | | |
poetry run coverage run --branch setup.py test | |
poetry run coverage xml -i | |
- name: Run mypy | |
# mypy is too slow there | |
if: matrix.python-version != 'pypy-3.9' | |
run: | | |
poetry run mypy . | |
- name: Run flake8 | |
run: | | |
poetry run flake8 | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v4 | |
- name: Build docs | |
if: matrix.build-docs | |
run: | | |
poetry run sphinx-build -W -a -E -b html -n docs docs/_build |