mountpoints 0.2.1

List mount points (windows, linux, macos)
Documentation
name: Rust

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

env:
  CARGO_TERM_COLOR: always

jobs:
  build:
    runs-on: ${{ matrix.os }}
    strategy:
      matrix:
        os: [ubuntu-latest, macos-latest, windows-latest]

    steps:
      - uses: actions/checkout@v2
      - name: Build
        run: cargo build --verbose
      - name: Run tests
        run: cargo test --verbose -- --nocapture
      - name: Build AArch64
        if: matrix.os == 'macos-latest'
        run: rustup target install aarch64-apple-darwin && cargo build --tests --verbose --target=aarch64-apple-darwin