Skip to content

Performance optimizations #79

Performance optimizations

Performance optimizations #79

Workflow file for this run

name: Pre-commit checks
on: [pull_request]
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install uv
run: |
curl -LsSf https://astral.sh/uv/install.sh | sh
echo "$HOME/.local/bin" >> $GITHUB_PATH
- name: Install dependencies
run: uv sync --dev
- name: Run pre-commit hooks
run: uv run pre-commit run --all-files