blkreader 0.1.2

Read file data directly from block device using extent information
Documentation
name: CI

on:
  push:
    branches: [main]
  pull_request:
    branches: [main]

permissions:
  contents: read

env:
  CARGO_TERM_COLOR: always

jobs:
  build:
    runs-on: ubuntu-latest

    steps:
    - uses: actions/checkout@v4

    - name: Build & Run
      run: |
        cargo fmt --all -- --check
        cargo clippy -- -D warnings
        cargo test
        cargo run --release -- README.md -v > /tmp/README.md
        diff README.md /tmp/README.md