Skip to content

Minor text update

Minor text update #2

Workflow file for this run

name: Format Pull Request
on:
pull_request:
jobs:
format:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v5
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
enable-cache: true
cache-dependency-glob: pyproject.toml
python-version: "3.10"
- name: Install dependencies
run: uv sync --group dev
- name: Format with ruff
run: uv run ruff format --check