Skip to content

chore: register the AngelSpec submodule at third_party/AngelSpec #780

chore: register the AngelSpec submodule at third_party/AngelSpec

chore: register the AngelSpec submodule at third_party/AngelSpec #780

Workflow file for this run

name: Pre-Commit Checks
permissions:
contents: read
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install pre-commit
run: pip install pre-commit
- name: Install pre-commit
run: pre-commit install
- name: Run pre-commit
run: pre-commit run --all-files --show-diff-on-failure