Skip to content

fix: update wallet heights when processing blocks (#309) #421

fix: update wallet heights when processing blocks (#309)

fix: update wallet heights when processing blocks (#309) #421

Workflow file for this run

name: Pre-commit Checks
on:
push:
branches:
- master
- 'v**-dev'
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
pre-commit:
name: Pre-commit (${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.12"
- name: Setup Rust toolchain
uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt, clippy
- name: Cache cargo dependencies
uses: Swatinem/rust-cache@v2
with:
shared-key: "pre-commit-rust-${{ matrix.os }}"
- name: Run pre-commit
uses: pre-commit/action@v3.0.1
with:
extra_args: --all-files --hook-stage push --verbose