Skip to content

Interpret PEP695 generic classes as inheriting from generic #5558

Interpret PEP695 generic classes as inheriting from generic

Interpret PEP695 generic classes as inheriting from generic #5558

Workflow file for this run

name: tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python: [3.8, 3.9, "3.10", 3.11, 3.12]
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Setup Python
uses: actions/setup-python@39cd14951b08e74b54015e9e001cdefcf80e669f # v5.1.1
with:
python-version: ${{ matrix.python }}
- name: Install tox
run: pip install tox
- name: Run tox on python version from matrix
run: tox -e py