Skip to content

[FAST_BUILD] Bump actions/download-artifact (#2420) #3903

[FAST_BUILD] Bump actions/download-artifact (#2420)

[FAST_BUILD] Bump actions/download-artifact (#2420) #3903

Workflow file for this run

name: Run pre-commit hooks
on:
pull_request:
push:
branches:
- main
workflow_dispatch:
permissions:
contents: read
jobs:
run-hooks:
runs-on: ubuntu-24.04
timeout-minutes: 5
steps:
- name: Checkout Repo ⚡️
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Set Up Python 🐍
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
with:
python-version: 3.12
- name: Install pre-commit 📦
run: |
pip install --upgrade pip
pip install --upgrade pre-commit
- name: Run pre-commit hooks ✅
run: pre-commit run --all-files --hook-stage manual