mirror of
https://github.com/XRPLF/rippled.git
synced 2026-01-11 18:25:23 +00:00
This change updates the XRPLF pre-commit workflow and prepare-runner action to their latest versions. For naming consistency the prepare-runner action changed the disable_ccache variable into enable_ccache, which matches our naming.
16 lines
443 B
YAML
16 lines
443 B
YAML
name: Run pre-commit hooks
|
|
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches: [develop, release, master]
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
# Call the workflow in the XRPLF/actions repo that runs the pre-commit hooks.
|
|
run-hooks:
|
|
uses: XRPLF/actions/.github/workflows/pre-commit.yml@5ca417783f0312ab26d6f48b85c78edf1de99bbd
|
|
with:
|
|
runs_on: ubuntu-latest
|
|
container: '{ "image": "ghcr.io/xrplf/ci/tools-rippled-pre-commit:sha-a8c7be1" }'
|