fix: use Binary
for checksum and merkle path so base64 deser works
#349
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Code Quality Checks | |
on: | |
pull_request: | |
jobs: | |
code-quality: | |
runs-on: ubuntu-latest | |
env: | |
RIPGREP_VERSION: 14.1.0 | |
FD_VERSION: 9.0.0 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Whitestapace lints | |
run: bash ci/code-quality/whitespace-lints.sh | |
- name: Spell Check with Typos | |
uses: crate-ci/typos@master | |
with: | |
config: ./.github/typos.toml | |
- uses: actions-rust-lang/setup-rust-toolchain@v1 | |
- uses: baptiste0928/cargo-install@v3 | |
with: | |
crate: taplo-cli | |
- run: taplo fmt --check |