Skip to content

v2.21.0

v2.21.0 #72

Workflow file for this run

name: tests
on: [push, pull_request, workflow_dispatch]
concurrency:
group: >-
${{ github.workflow }}-
${{ github.ref_type }}-
${{ github.event.pull_request.number || github.sha }}
cancel-in-progress: true
jobs:
test:
strategy:
matrix:
python:
- "3.9" # oldest Python supported by PSF
- "3.10"
- "3.11"
- "3.12"
- "3.13" # newest Python that is stable
platform:
- ubuntu-latest
- macos-latest
- windows-latest
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python }}
- name: Run tests
run: pipx run tox -e py -- -vvv