Skip to content

Add R-style performance table with Great Tables and Reactable renderers #258

Add R-style performance table with Great Tables and Reactable renderers

Add R-style performance table with Great Tables and Reactable renderers #258

# Build and test the Python package. Documentation is handled separately in docs.yml.
name: Python package
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.10"]
permissions:
contents: read
steps:
- uses: actions/checkout@v4
- name: Install uv and set the Python version
uses: astral-sh/setup-uv@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install the project
run: uv sync --all-extras --dev
- name: Build package
run: uv build
- name: Run tests
run: uv run pytest tests
- name: Show package version
run: grep -r "version" pyproject.toml || grep -r "__version__" rtichoke/ || python -c "import rtichoke; print(rtichoke.__version__)"