8000 Touching up pcovc vs pca example · scikit-learn-contrib/scikit-matter@2c77b00 · GitHub
[go: up one dir, main page]

Skip to content

Adding Principal Covariates Classification (PCovC) Code #1687

Adding Principal Covariates Classification (PCovC) Code

Adding Principal Covariates Classification (PCovC) Code #1687

Workflow file for this run

name: Lint
on:
pull_request:
branches: [main]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.13"
- name: install tests dependencies
run: python -m pip install tox
- name: Lint the code
run: tox -e lint
0