Skip to content

removed generator, small updates #68

removed generator, small updates

removed generator, small updates #68

Workflow file for this run

name: Python
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 5
fail-fast: true
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@main
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@main
with:
python-version: ${{ matrix.python-version }}
- name: Install packages
run: |
echo "Installing dependencies"
python3 -m venv .venv
source .venv/bin/activate
pip install -U pip setuptools wheel poetry pytest
cd python
poetry install
pytest tests/