Skip to content

Drop support for end-of-life versions of Python #32

Drop support for end-of-life versions of Python

Drop support for end-of-life versions of Python #32

Workflow file for this run

name: CI
on:
push:
branches: ["master"]
pull_request:
branches: ["master"]
jobs:
tox:
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- 3.8
- 3.9
- 3.10
- 3.11
- 3.12
- 3.13
- 3.14
- pypy3
steps:
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install tox
run: |
python -m pip install --upgrade pip setuptools
pip install --upgrade tox tox-gh-actions
- name: Initialize tox envs
run: |
tox --parallel auto --notest
- name: Test with tox
run: |
tox --parallel 0
- uses: codecov/codecov-action@v1
with:
file: ./coverage.xml