Skip to content

docs: Update documentation to reflect current state #124

docs: Update documentation to reflect current state

docs: Update documentation to reflect current state #124

Workflow file for this run

# .github/workflows/premerge.yml
---
name: Run pre merge pipeline
on:
pull_request:
branches:
- devel
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13"]
fail-fast: false
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
uses: astral-sh/setup-uv@v7
- name: Install the project
run: uv sync --all-extras --dev
- name: Run the premerge target
run: make premerge
- name: Run coverage check with 95% threshold
run: uv run pytest --cov=ipsdk --cov-report=term --cov-fail-under=95 tests/