Skip to content

Optimize CAR decoding by reducing allocations #15

Optimize CAR decoding by reducing allocations

Optimize CAR decoding by reducing allocations #15

Workflow file for this run

name: Lint and format check
on: [ pull_request ]
permissions:
contents: read
env:
RUSTFLAGS: "-Dwarnings" # treat warnings as errors
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout repository.
uses: actions/checkout@v6
- name: Run Clippy.
run: cargo clippy --all-targets --all-features
- name: Run fmt check.
run: cargo fmt --all -- --check