Skip to content

bulk: few fixes and improvements #148

bulk: few fixes and improvements

bulk: few fixes and improvements #148

Workflow file for this run

name: Run pre-commit
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_call:
jobs:
pre-commit-check:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v4
with:
python-version: "3.11"
- name: Configure caching
uses: actions/cache@v4
with:
path: ~/.cache/pre-commit
key: precommit-${{ runner.os }}-${{ hashFiles('.pre-commit-config.yaml') }}
- name: Configure environment
run: |
uv sync
- name: Run pre-commit
run: |
uv run pre-commit run --all-files