Skip to content

Refactor experimental code into reusable class that implements the Scikit-Learn BaseEstimator interface #7

Refactor experimental code into reusable class that implements the Scikit-Learn BaseEstimator interface

Refactor experimental code into reusable class that implements the Scikit-Learn BaseEstimator interface #7

name: Python package
on:
pull_request:
branches: [ "main" ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.12"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install Nox
run: |
python -m pip install --upgrade pip
python -m pip install --upgrade setuptools
python -m pip install "nox==2023.4.22"
- name: Run code formatting checks
run: |
nox -s check_code_formatting-${{ matrix.python-version }}
- name: Run static type checking
run: |
nox -s check_types-${{ matrix.python-version }}
- name: Run tests
run: |
nox -s run_tests-${{ matrix.python-version }}