Skip to content

chore: drop support for Python 3.8 #12

chore: drop support for Python 3.8

chore: drop support for Python 3.8 #12

Workflow file for this run

name: "Unit tests / Cover"
on:
pull_request:
branches:
- master
jobs:
run-unittests:
name: unit-${{ matrix.python }}
runs-on: ubuntu-latest
strategy:
matrix:
python:
- "3.9"
- "3.10"
- "3.11"
- "3.12"
- "3.13"
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
allow-prereleases: true
- name: Install nox
run: |
python -m pip install --upgrade setuptools pip wheel
python -m pip install tox
- name: Run unit tests
run: |
tox -e py${{ matrix.python }}
report-coverage:
name: cover
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.9"
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.13"
- run: pip install tox
- run: tox -e py39,py313,cover