Skip to content

fix: nuitka path

fix: nuitka path #83

Workflow file for this run

name: pytest
on:
push:
branches:
- develop
- 'feature/**'
jobs:
pytest:
name: Run tests with pytest
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.11', '3.12']
steps:
- name: checkout
uses: actions/checkout@v2
- name: install python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: setup poetry
run: |
pip install poetry
poetry install --no-interaction
- name: run tests
run: poetry run pytest