Skip to content

updates to functionality - not clean yet #105

updates to functionality - not clean yet

updates to functionality - not clean yet #105

Workflow file for this run

name: Run Tests
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: Install dependencies
run: |
pip install pytest
pip install -e .
- name: Run tests
run: |
pytest