Skip to content
This repository was archived by the owner on Dec 11, 2025. It is now read-only.

docs: comprehensive documentation sync for Wave 1 & Wave 2 #15

docs: comprehensive documentation sync for Wave 1 & Wave 2

docs: comprehensive documentation sync for Wave 1 & Wave 2 #15

Workflow file for this run

name: Pre-commit Checks
on:
push:
branches: [ main, develop, integration/* ]
pull_request:
branches: [ main, develop ]
jobs:
pre-commit:
name: Pre-commit Hooks
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python 3.9
uses: actions/setup-python@v5
with:
python-version: '3.9'
- name: Install pre-commit
run: |
pip install pre-commit
- name: Cache pre-commit hooks
uses: actions/cache@v4
with:
path: ~/.cache/pre-commit
key: pre-commit-${{ runner.os }}-${{ hashFiles('.pre-commit-config.yaml') }}
- name: Run pre-commit hooks
run: |
pre-commit run --all-files --show-diff-on-failure