Skip to content

Impl DiskTreeMap::subtree_iter #277

Impl DiskTreeMap::subtree_iter

Impl DiskTreeMap::subtree_iter #277

Workflow file for this run

name: CI
on:
push:
branches: ["*"]
pull_request:
branches: ["*"]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --all-features -- -Dclippy::all
- name: Build
run: cargo build --all-features --benches
- name: Check formatting
run: cargo fmt --check
- name: Tests
run: cargo test --release --all-features