Skip to content

refactor(cloner): make post-delegation clone mode exclusive #6262

refactor(cloner): make post-delegation clone mode exclusive

refactor(cloner): make post-delegation clone mode exclusive #6262

Workflow file for this run

name: Run CI - Format
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
push:
branches: [master, dev]
paths:
- '**/*.rs'
- '**/Cargo.toml'
- '**/Cargo.lock'
- '**/rustfmt*.toml'
- 'Makefile'
- 'test-integration/Makefile'
- '.github/workflows/ci-fmt.yml'
- '.github/actions/setup-build-env/**'
pull_request:
types: [opened, reopened, synchronize, ready_for_review]
paths:
- '**/*.rs'
- '**/Cargo.toml'
- '**/Cargo.lock'
- '**/rustfmt*.toml'
- 'Makefile'
- 'test-integration/Makefile'
- '.github/workflows/ci-fmt.yml'
- '.github/actions/setup-build-env/**'
jobs:
run_make_ci_format:
runs-on: ubuntu-latest
steps:
- name: Checkout this magicblock-validator
uses: actions/checkout@v5
with:
path: magicblock-validator
- uses: ./magicblock-validator/.github/actions/setup-build-env
with:
build_cache_key_name: "magicblock-validator-ci-fmt-v001"
rust_toolchain_release: "nightly"
github_token: ${{ secrets.GITHUB_TOKEN }}
- run: make ci-fmt
shell: bash
working-directory: magicblock-validator
- name: Run ci-fmt in test-integration
run: |
cd test-integration
make ci-fmt
shell: bash
working-directory: magicblock-validator