Skip to content

Bump scikit-learn from 1.6.0 to 1.6.1 #43

Bump scikit-learn from 1.6.0 to 1.6.1

Bump scikit-learn from 1.6.0 to 1.6.1 #43

Workflow file for this run

name: Code Formatting
on: [push, pull_request]
jobs:
format:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m venv venv
source venv/bin/activate
pip install black
- name: Run Black
run: |
source venv/bin/activate
black --check .