Skip to content

Fix generic typing. #17

Fix generic typing.

Fix generic typing. #17

Workflow file for this run

name: Tests
on:
push:
branches:
- main
jobs:
run_test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: "3.12"
- name: Install dependencies
run: pip install -e .
- name: Test with pytest
run: |
pip install pytest
pytest