Skip to content

build(deps-dev): bump scikit-learn from 1.3.0 to 1.5.0 #376

build(deps-dev): bump scikit-learn from 1.3.0 to 1.5.0

build(deps-dev): bump scikit-learn from 1.3.0 to 1.5.0 #376

Workflow file for this run

name: Checkstyle
on:
pull_request:
push:
branches:
- master
jobs:
checkstyle:
name: Checkstyle with Flake8
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- "3.10"
steps:
-
name: Checkout
uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8
- name: Lint the code with flake8
run: |
flake8 .