mirror of
https://github.com/XRPLF/clio.git
synced 2025-11-04 11:55:51 +00:00
28 lines
547 B
YAML
28 lines
547 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:0d262e74bcd286ccd6fc36e45990ff2e6b8d8430
|
|
|
|
steps:
|
|
- name: Checkout Repo ⚡️
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Prepare runner
|
|
uses: ./.github/actions/prepare_runner
|
|
with:
|
|
disable_ccache: true
|
|
|
|
- name: Run pre-commit ✅
|
|
run: pre-commit run --all-files
|