Skip to content

perf(dp_table): inline StoredDP dist as fixed-size array (#88) #169

perf(dp_table): inline StoredDP dist as fixed-size array (#88)

perf(dp_table): inline StoredDP dist as fixed-size array (#88) #169

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Rust
uses: dtolnay/rust-toolchain@stable
- name: Cache cargo
uses: Swatinem/rust-cache@v2
- name: Build
run: cargo build --all-features --locked
- name: Run clippy
run: cargo clippy --all-features --locked -- -D warnings
- name: Run tests
run: cargo test --all-features --locked