rawdio 0.14.0

An Audio Engine, inspired by the Web Audio API
Documentation
name: Run Benchmarks

on:
  workflow_dispatch:
  schedule:
    - cron: "0 0 1 * *"

env:
  CARGO_TERM_COLOR: always

jobs:
  benchmark:
    runs-on: ubuntu-latest

    steps:
      - uses: actions/checkout@v3
      - name: Install Rust Nightly
        uses: actions-rs/toolchain@v1
        with:
          toolchain: nightly
          override: true
          components: rustfmt, clippy
      - name: Install ALSA
        run: |
          sudo apt-get update
          sudo apt-get install -y libssl-dev libasound2-dev
      - name: Run benchmarks
        run: cargo bench