Skip to content

chore(deps): bump ruff from 0.14.6 to 0.14.7 #565

chore(deps): bump ruff from 0.14.6 to 0.14.7

chore(deps): bump ruff from 0.14.6 to 0.14.7 #565

Workflow file for this run

name: Linting
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
lint:
name: Run Linters
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v6
- name: Install Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
uses: astral-sh/setup-uv@v7
- name: Install dependencies
run: uv sync --all-groups --dev
- name: Check using Ruff
run: uv run ruff check .
- name: Check using Ruff formatter
run: uv run ruff format --check .
- name: Check Type Hints
run: uv run mypy