mirror of
https://github.com/XRPLF/clio.git
synced 2026-04-29 15:37:53 +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:8ad111655c4d04bfedb7e7cb3bbfba6d4204852d
|
|
|
|
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
|