aifc 0.7.0

Reader and writer for the AIFF and AIFF-C audio format
Documentation
# Cross-platform tests for 64-bit little-endian x86_64 and
# 32-bit big-endian PowerPC.
name: Cross-platform tests

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

env:
  CARGO_TERM_COLOR: always

jobs:
  test:
    strategy:
      matrix:
        target:
          - x86_64-unknown-linux-gnu
          - powerpc-unknown-linux-gnu
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v6
        with:
          submodules: recursive
      - name: Install Rust matching rust-version (MSRV)
        run: rustup install 1.87.0 && rustup default 1.87.0 && rustup component add clippy
      - name: Install cross-compilation tools
        uses: taiki-e/setup-cross-toolchain-action@v1
        with:
          target: ${{ matrix.target }}
      - run: ./tools/test.sh