Skip to content

chore: fix formatting #331

chore: fix formatting

chore: fix formatting #331

Workflow file for this run

name: Tests
on:
push:
branches: [ '**' ]
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.13
uses: actions/setup-python@v5
with:
python-version: "3.13"
- name: Install uv
uses: astral-sh/setup-uv@v3
with:
version: "latest"
- name: Install dependencies
run: uv sync --all-groups
- name: Set up pre-commit cache
uses: actions/cache@v4
with:
path: ~/.cache/pre-commit
key: pre-commit-3.13-${{ hashFiles('.pre-commit-config.yaml') }}
- name: Run pre-commit checks
run: uv run pre-commit run --all-files