Skip to content

chore(deps): update astral-sh/setup-uv action to v6 #99

chore(deps): update astral-sh/setup-uv action to v6

chore(deps): update astral-sh/setup-uv action to v6 #99

Workflow file for this run

on:
push:
paths:
- "**.py"
name: lint
jobs:
lint:
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- uses: astral-sh/setup-uv@v6
with:
version: "0.6.3"
python-version: ${{ matrix.python-version }}
enable-cache: true
cache-dependency-glob: "uv.lock"
- run: uv sync --all-extras
- run: uv run ruff check
- run: uv run ruff format --check --diff
- run: uv run mypy .