Skip to content

猬嗭笍(deps): Update langchain-litellm requirement from <0.7.0,>=0.6.6 to >=0.6.6,<0.8.0 in /packages/mewbo_core #579

猬嗭笍(deps): Update langchain-litellm requirement from <0.7.0,>=0.6.6 to >=0.6.6,<0.8.0 in /packages/mewbo_core

猬嗭笍(deps): Update langchain-litellm requirement from <0.7.0,>=0.6.6 to >=0.6.6,<0.8.0 in /packages/mewbo_core #579

Workflow file for this run

name: Python Lint
on:
pull_request:
paths:
- "packages/**"
- "apps/mewbo_api/**"
- "apps/mewbo_cli/**"
- "apps/mewbo_mcp/**"
- "apps/mewbo_ha_conversation/**"
- "tests/**"
- "demo/seeder/**"
- "pyproject.toml"
- "uv.lock"
- ".github/workflows/lint.yml"
workflow_dispatch:
permissions:
contents: read
# One run per PR; a new commit cancels the superseded run.
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
cancel-in-progress: true
jobs:
lint:
name: ruff + mypy
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.11"
- name: Install uv
run: |
python -m pip install --upgrade pip
python -m pip install uv
- name: Install dependencies
run: |
uv sync --all-extras --group dev
- name: Ruff
run: .venv/bin/ruff check
- name: Mypy
run: .venv/bin/mypy