Skip to content

猬嗭笍(deps-dev): Bump ruff from 0.15.1 to 0.15.2 in the python-root group #244

猬嗭笍(deps-dev): Bump ruff from 0.15.1 to 0.15.2 in the python-root group

猬嗭笍(deps-dev): Bump ruff from 0.15.1 to 0.15.2 in the python-root group #244

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