Skip to content

perf(account): reduce memory footprint #42

perf(account): reduce memory footprint

perf(account): reduce memory footprint #42

Workflow file for this run

name: Rust
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
# Fail on all warnings, including clippy lints
RUSTFLAGS: "-Dwarnings"
CARGO_TERM_COLOR: always
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run clippy
run: cargo clippy --all-targets --all-features
test:
needs: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run tests
run: cargo test --verbose --lib --bins --tests --examples