Skip to content

fix: Use GroupReader for BaseObjectFactory #16

fix: Use GroupReader for BaseObjectFactory

fix: Use GroupReader for BaseObjectFactory #16

Workflow file for this run

name: Test package
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
workflow_call:
permissions:
contents: read
jobs:
test-package:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
os: ["ubuntu-latest", "macos-latest", "windows-latest"]
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
uv lock --upgrade
uv sync --all-extras
- name: Run pytest
run: |
pytest --version
pytest -v tests/
test-build-docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v5
with:
python-version: "3.13"
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y doxygen
uv lock --upgrade
uv sync --all-extras
- name: Build docs
run: |
sphinx-build -b html docs/ build/html