Skip to content

Updated instructions #52

Updated instructions

Updated instructions #52

Workflow file for this run

name: Code quality
"on": ["push"]
jobs:
unittests:
name: "Pytest"
runs-on: ubuntu-latest
steps:
- name: Checkout the code
uses: actions/checkout@v3
- name: Install poetry
run: pipx install poetry==1.7.1
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: "3.11"
cache: poetry
- name: Install dependencies
run: poetry install
- name: Run tests
run: poetry run pytest