Skip to content

chore: enable test multi-python version #275

chore: enable test multi-python version

chore: enable test multi-python version #275

Workflow file for this run

name: tests
on: [pull_request]
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install Hatch
run: pipx install hatch
- name: Run tests
run: hatch test