midasio 0.7.0

Utilities to read binary files in the MIDAS format
Documentation
name: Cargo Build & Test

on:
  push:
    branches: [ main ]
  pull_request:
    branches: [ main ]
  merge_group:
    types: [ checks_requested ]

env:
  CARGO_TERM_COLOR: always

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v4
    - name: Build
      run: cargo build --verbose
    - name: Build (all features)
      run: cargo build --all-features --verbose
    - name: Run tests
      run: cargo test --all-features --verbose