Skip to content

Drop support for python3.8. Add support for 3.12 & 3.13 #91

Drop support for python3.8. Add support for 3.12 & 3.13

Drop support for python3.8. Add support for 3.12 & 3.13 #91

Workflow file for this run

---
name: Lint and Test
on:
push:
branches:
- "feature/*"
- "main"
pull_request:
branches:
- "main"
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Upgrade pip
run: python -m pip install --upgrade pip
- name: Install dependencies
run: pip install '.[test]'
- uses: pre-commit/action@v3.0.1
- name: Test with pytest
run: coverage run -m pytest -v
- name: Coverage Report
run: coverage report -m