Skip to content

Bump scikit-learn from 0.22.1 to 1.5.0 in /v2 #27

Bump scikit-learn from 0.22.1 to 1.5.0 in /v2

Bump scikit-learn from 0.22.1 to 1.5.0 in /v2 #27

Workflow file for this run

name: build
on: [push, pull_request]
jobs:
build:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
python-version: [3.7, 3.8, 3.9, "3.10", "3.11"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install 'pytest-flake8<1.1' pytest-cov matplotlib scipy flake8
- name: Test
run: |
py.test --cov=. --cov-branch --cov-report=xml -v test
flake8 pyext/src/ --extend-ignore=F821
flake8 test/ --extend-ignore=F841,E402
- uses: codecov/codecov-action@v1