mirror of
https://github.com/XRPLF/clio.git
synced 2026-01-15 20:25:29 +00:00
28 lines
600 B
YAML
28 lines
600 B
YAML
name: Run pre-commit hooks
|
|
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches: [develop]
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
run-hooks:
|
|
runs-on: heavy
|
|
container:
|
|
image: ghcr.io/xrplf/clio-ci:0e8896ad064a5290c4805318b549df16403ca2d7
|
|
|
|
steps:
|
|
- name: Checkout Repo ⚡️
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Prepare runner
|
|
uses: XRPLF/actions/.github/actions/prepare-runner@7951b682e5a2973b28b0719a72f01fc4b0d0c34f
|
|
with:
|
|
disable_ccache: true
|
|
|
|
- name: Run pre-commit ✅
|
|
run: pre-commit run --all-files
|