Skip to content

feat: add pluggable estimator pipeline #184

feat: add pluggable estimator pipeline

feat: add pluggable estimator pipeline #184

Workflow file for this run

name: Run Tests
on:
pull_request:
branches: [ main ]
push:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Create virtual environment
run: python3 -m venv venv
- name: Install package in editable mode
run: |
source venv/bin/activate
python3 -m pip install --editable .
- name: Run tests
run: |
source venv/bin/activate
python3 -m pytest tests/ -v