Skip to content

fix: broken readme #115

fix: broken readme

fix: broken readme #115

Workflow file for this run

name: Continous Integration
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", 3.11, 3.12]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install hatch
run: |
pip install hatch
- name: Test with pytest
run: |
hatch run pytest