Skip to content

lib: Move chunk size calc out of the hot path #49

lib: Move chunk size calc out of the hot path

lib: Move chunk size calc out of the hot path #49

Workflow file for this run

name: Cargo Build & Test
on:
push:
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
build_and_test:
name: Build and test
strategy:
matrix:
toolchain:
- 1.75.0 # MSRV
- 1.91.0
os:
- ubuntu-latest
- windows-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Cache Rust
uses: actions/cache@v4
with:
path: ~/.rustup
key: rustup-${{ runner.os }}-${{ matrix.toolchain }}
- name: Cache Cargo
uses: actions/cache@v4
with:
path: ~/.cargo
key: cargo-${{ runner.os }}-${{ matrix.toolchain }}
- run: rustup update ${{ matrix.toolchain }}
- run: rustup default ${{ matrix.toolchain }}
- run: rustup component add clippy
- run: cargo build --verbose
- run: cargo clippy -- --deny warnings
- run: cargo clippy --tests -- --deny warnings
- run: cargo test --verbose
# vim: ts=2 sw=2 expandtab