Skip to content

Support Python 3.12+ w/ compatibility fallbacks #3

Support Python 3.12+ w/ compatibility fallbacks

Support Python 3.12+ w/ compatibility fallbacks #3

Workflow file for this run

name: Python package
on:
pull_request:
types: [opened, synchronize, reopened]
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["pypy3.9", "pypy3.10", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Test
run: |
python -m pip install --upgrade pip
pip install -e ".[all]"
pytest