soundio 0.2.1

Bindings to libsoundio for audio input and output.
Documentation
name: master

on:
  push:
    branches:
      - master

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

    steps:
      - uses: actions/checkout@v2
      
      - name: Install latest stable
        uses: actions-rs/toolchain@v1
        with:
          toolchain: stable
          profile: minimal
          override: true

      - name: Run tests (debug)
        uses: actions-rs/cargo@v1
        with:
          command: test
          args: --release --workspace

      - name: Run tests (release)
        uses: actions-rs/cargo@v1
        with:
          command: test
          args: --workspace