Skip to content

SilhouetteVisualizer add support for more estimators #24

SilhouetteVisualizer add support for more estimators

SilhouetteVisualizer add support for more estimators #24

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Yellowbrick PR Linting
on:
# Trigger on pull request always (note the trailing colon)
pull_request:
jobs:
# Run pre-commit checks on the files changed
linting:
runs-on: ubuntu-latest
name: Linting
steps:
- name: Checkout Code
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install pre-commit
pre-commit install
- name: Run Checks
run: |
pre-commit run --from-ref origin/${{ github.base_ref }} --to-ref HEAD --show-diff-on-failure