Skip to content

adds custom vectorizer support #399

adds custom vectorizer support

adds custom vectorizer support #399

Workflow file for this run

name: Lint
on:
pull_request:
push:
branches:
- main
jobs:
check:
name: Style-check ${{ matrix.python-version }}
runs-on: ubuntu-latest
strategy:
matrix:
# Only lint on the min and max supported Python versions.
# It's extremely unlikely that there's a lint issue on any version in between
# that doesn't show up on the min or max versions.
#
# GitHub rate-limits how many jobs can be running at any one time.
# Starting new jobs is also relatively slow,
# so linting on fewer versions makes CI faster.
python-version:
- "3.9"
- "3.11"
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 Poetry
uses: snok/install-poetry@v1
- name: Install dependencies
run: |
poetry install --all-extras
- name: check-sort-import
run: |
poetry run check-sort-imports
- name: check-black-format
run: |
poetry run check-format
- name: check-mypy
run: |
poetry run mypy