Skip to content

version dump

version dump #189

name: Testing
on: [push]
jobs:
tests:
runs-on: ubuntu-latest
strategy:
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@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
if [ -f dev_requirements.txt ]; then pip install -r dev_requirements.txt; fi
- name: Test with pytest and hatch
run: |
hatch env run test