usn-parser 0.1.4

A Windows utility for NTFS/ReFS to search the MFT & monitoring the changes of USN Journal.
name: Rust

on:
  push:
    branches: [ "master" ]
  pull_request:
    branches: [ "master" ]

env:
  CARGO_TERM_COLOR: always

jobs:
  build:

    runs-on: windows-latest

    steps:
    - uses: actions/checkout@v4
      with:
        submodules: 'recursive'
    - name: Install Rust toolchain
      uses: dtolnay/rust-toolchain@stable
      with:
        toolchain: stable
        targets: x86_64-pc-windows-msvc
    - name: Build
      run: cargo build --verbose
    - name: Run tests
      run: cargo test --verbose