mft 0.7.0

A Fast (and safe) parser for the Windows Master File Table (MFT) format
Documentation
name: CI

on:
  pull_request:
  push:
    branches:
      - main
      - 'release/**'

jobs:
  build_and_test:
    name: Test MFT Library
    runs-on: ${{ matrix.os }}
    strategy:
      fail-fast: false
      matrix:
        os:
          - ubuntu-latest
          # macos-13 runners are retired; track the latest supported macOS runner.
          - macos-latest
          - windows-latest
    env:
      CARGO_TERM_COLOR: always
    steps:
      - uses: actions/checkout@v4
        with:
          fetch-depth: 0

      - name: Install Rust toolchain
        uses: dtolnay/rust-toolchain@stable
        with:
          components: rustfmt, clippy

      - name: Check formatting
        run: cargo fmt --all -- --check

      - name: Run clippy
        run: cargo clippy --all-targets --all-features -- -D warnings

      - name: Run tests
        run: cargo test --all-targets --all-features