Skip to content

fix: sync the FSInfo struct on FAT32 filesystems #75

fix: sync the FSInfo struct on FAT32 filesystems

fix: sync the FSInfo struct on FAT32 filesystems #75

Workflow file for this run

name: Cargo Build & Test
on:
push:
pull_request:
workflow_dispatch:
env:
CARGO_TERM_COLOR: always
RUST_LOG: trace
jobs:
test_all_features:
name: Run tests - All features enabled
runs-on: ubuntu-latest
strategy:
matrix:
toolchain:
- stable
- beta
- nightly
steps:
- uses: actions/checkout@v4
- run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
- run: cargo build --verbose --all-features
- run: timeout 1m cargo test --verbose --all-features -- --nocapture
test_no_default_features:
name: Run tests - No features enabled
runs-on: ubuntu-latest
strategy:
matrix:
toolchain:
- stable
- beta
- nightly
steps:
- uses: actions/checkout@v4
- run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
- run: cargo build --verbose --no-default-features --all-targets
- run: timeout 1m cargo test --verbose --no-default-features --all-targets -- --nocapture