Skip to content
This repository was archived by the owner on Jan 31, 2026. It is now read-only.

feat: Jupyter Notebook Governance Infrastructure (128/128 tasks complete) #15

feat: Jupyter Notebook Governance Infrastructure (128/128 tasks complete)

feat: Jupyter Notebook Governance Infrastructure (128/128 tasks complete) #15

Workflow file for this run

name: Pre-commit
on:
pull_request:
branches: [main]
workflow_dispatch:
jobs:
pre-commit:
name: Pre-commit Hooks
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
enable-cache: true
- name: Set up Python
run: uv python install
- name: Install dependencies
run: uv sync
- name: Run pre-commit on all files
run: uv run pre-commit run --all-files