Skip to content

fix(deps): update dependency rich to v15 #1821

fix(deps): update dependency rich to v15

fix(deps): update dependency rich to v15 #1821

Workflow file for this run

name: Formatting and Type Checks
on: ["push", "pull_request"]
jobs:
checks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Set up Python 3.14
uses: astral-sh/setup-uv@v7
with:
python-version: "3.14"
activate-environment: true
- name: Install dependencies
run: |
uv export --no-hashes | uv pip install -r - basedpyright --color always
- name: Check formatting
run: |
isort . --check --diff
- name: Check imports order
run: |
black . --check --diff
- name: Check typing
run: |
basedpyright