bitask 0.1.1

Bitask is a Rust implementation of Bitcask, a log-structured key-value store optimized for high-performance reads and writes.
Documentation
name: Build and test

on:
  push:
    branches:
      - master
  pull_request:
    branches:
      - master

jobs:
  test:
    name: Build and test
    runs-on: ubuntu-latest
    steps:
      - name: Checkout code
        uses: actions/checkout@v4

      - name: Set up Rust
        uses: actions-rs/toolchain@v1
        with:
          profile: minimal
          toolchain: stable

      - name: Install dependencies
        run: |
          rustup component add rustfmt
          rustup component add clippy

      - name: Run cargo fmt
        run: cargo fmt --all -- --check

      - name: Build and test
        run: |
          cargo build --verbose --all
          cargo test --verbose --all

      - name: Run cargo clippy
        run: |
          cargo clippy --all-targets --all -- --deny=warnings

      - name: Run cargo audit
        run: |
          (cargo install cargo-audit && cargo audit)