Skip to content

support for python 3.7 removed. Support for 3.12 added. #12

support for python 3.7 removed. Support for 3.12 added.

support for python 3.7 removed. Support for 3.12 added. #12

Workflow file for this run

name: Testing
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: pip
- name: Install dependencies
run: |
pip install -e .
pip install hatch
- name: Run tests
run: hatch run cov-fail