Skip to content

Fix/added tests improvements and documentation #11

Fix/added tests improvements and documentation

Fix/added tests improvements and documentation #11

Workflow file for this run

name: Test
on: [pull_request, workflow_dispatch]
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.8"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
curl -sSL https://install.python-poetry.org | python3 -
poetry config virtualenvs.create false
poetry install
- name: Install
run: poetry install --with tests
- name: Run Pytest
run: poetry run pytest