Skip to content

Release v0.3.0: drift-detection features, calibration metrics, and bug fixes #1030

Release v0.3.0: drift-detection features, calibration metrics, and bug fixes

Release v0.3.0: drift-detection features, calibration metrics, and bug fixes #1030

Workflow file for this run

name: package install checks
on:
push:
branches:
- main
paths:
- .pre-commit-config.yaml
- .github/workflows/package.yml
- '**.py'
- uv.lock
- pyproject.toml
- '**.ipynb'
pull_request:
branches:
- main
paths:
- .pre-commit-config.yaml
- .github/workflows/package.yml
- '**.py'
- uv.lock
- pyproject.toml
- '**.ipynb'
jobs:
base-package-install-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7.0.1
- name: Install pip
run: python3 -m pip install --upgrade pip
- uses: actions/setup-python@v7.0.0
with:
python-version: '3.11'
- name: Install package and test import
run: |
pip install -e .
pip install pytest
python3 -m pytest tests/package/*.py