Skip to content

Add github test actions #1

Add github test actions

Add github test actions #1

Workflow file for this run

steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Install dependencies
run: |
poetry install
- name: Test with pytest
run: |
poetry run pytest tests