Skip to content

fix(lora,ptuning): short-circuit PEFT vocab-check that hits the hub #3533

fix(lora,ptuning): short-circuit PEFT vocab-check that hits the hub

fix(lora,ptuning): short-circuit PEFT vocab-check that hits the hub #3533

Workflow file for this run

name: Typing
on: [ push, pull_request ]
jobs:
mypy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
python-version: "3.10"
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
version: "0.10.0"
- name: Install dependencies
run: |
uv lock
uv sync --group typing --group test --group docs --extra catboost --extra peft --extra transformers --extra sentence-transformers --extra openai
- name: Run mypy
run: uv run mypy src/autointent tests
- name: Run mypy on documentation code
run: uv run mypy --namespace-packages --explicit-package-bases user_guides docs/source/conf.py docs/source/docs_utils