Skip to content

Drop Python 3.9 support #29

Drop Python 3.9 support

Drop Python 3.9 support #29

Workflow file for this run

on:
push:
branches: ['*']
pull_request:
branches: ['*']
name: tests
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
python: ['3.10', '3.11', '3.12', '3.13', '3.14']
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Set up Python ${{matrix.python}}
uses: actions/setup-python@v6
with:
python-version: ${{matrix.python}}
- name: Run unit tests
run: python -mtests -v