Skip to content

⬆️(deps-dev): update langfuse requirement from <3.0.0,>=2.29.3 to >=2.29.3,<4.0.0 in /apps/meeseeks_cli #177

⬆️(deps-dev): update langfuse requirement from <3.0.0,>=2.29.3 to >=2.29.3,<4.0.0 in /apps/meeseeks_cli

⬆️(deps-dev): update langfuse requirement from <3.0.0,>=2.29.3 to >=2.29.3,<4.0.0 in /apps/meeseeks_cli #177

Workflow file for this run

name: Lint Checks
on:
push:
paths:
- "**/*.py"
- "**/pyproject.toml"
- ".github/workflows/lint.yml"
pull_request:
workflow_dispatch:
permissions:
contents: read
jobs:
lint:
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