Skip to content

Bump lefthook from 1.11.14 to 1.12.2 #569

Bump lefthook from 1.11.14 to 1.12.2

Bump lefthook from 1.11.14 to 1.12.2 #569

Workflow file for this run

name: Build
on:
workflow_dispatch:
pull_request:
push:
branches: [main]
jobs:
build-package:
name: Build Package
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v4.2.2
- name: Setup uv
uses: astral-sh/setup-uv@v6.4.3
- name: Install Dependencies
run: uv sync --locked
- name: Check Formatting
uses: dprint/check@v2.3
- name: Check Lint
run: uv run ruff check
- name: Test Package
run: uv run pytest -v --cov
- name: Build Package
run: uv build