Skip to content

limitations inclusion for docs #46

limitations inclusion for docs

limitations inclusion for docs #46

Workflow file for this run

name: Run Python Tests
on:
push:
branches: ['**']
pull_request:
branches: ['**']
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install Poetry
run: |
python -m pip install --upgrade pip
pip install poetry
- name: Install dependencies with Poetry
run: poetry install --no-interaction --no-root
- name: Install optigob package (editable)
run: poetry install --no-interaction
- name: Run tests via Makefile in tests folder
working-directory: tests
run: poetry run make test