Skip to content

refactor: update project dependencies and clean up configuration files #5

refactor: update project dependencies and clean up configuration files

refactor: update project dependencies and clean up configuration files #5

Workflow file for this run

name: Ruff Lint & Format
on: [push, pull_request]
jobs:
ruff:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Set up Python
uses: astral-sh/setup-uv@v7
with:
python-version: "3.12"
enable-cache: true
cache-suffix: "ruff"
- name: Install dependencies (dev)
run: uv sync --dev
- name: Ruff Lint
run: uv run ruff check .
- name: Ruff Format (check only)
run: uv run ruff format . --check