Skip to content

Bump scikit-learn in the python-minor-and-patch group #644

Bump scikit-learn in the python-minor-and-patch group

Bump scikit-learn in the python-minor-and-patch group #644

Workflow file for this run

name: Python package
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: ["3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v7
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v7
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
env:
POETRY_VERSION: 2.1.2
run: |
curl -sSL https://install.python-poetry.org | python - -y
- name: Install dependencies
run: |
poetry install
- name: Format with black
run: |
poetry run black .
- name: Test with pytest
run: |
poetry run pytest