Skip to content

Bump audio_thread_priority to 0.32. #235

Bump audio_thread_priority to 0.32.

Bump audio_thread_priority to 0.32. #235

Workflow file for this run

name: Build
env:
RUST_BACKTRACE: 1
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.experimental }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-20.04, windows-2019, macos-12]
rust: [stable]
experimental: [false]
include:
- os: ubuntu-20.04
rust: nightly
experimental: true
- os: windows-2019
rust: nightly
experimental: true
- os: macos-12
rust: nightly
experimental: true
steps:
- uses: actions/checkout@v2
with:
submodules: recursive
- name: Install Dependencies (Linux)
run: sudo apt-get update && sudo apt-get install libdbus-1-dev
if: matrix.os == 'ubuntu-20.04'
- name: Install Rust
run: rustup toolchain install ${{ matrix.rust }} --profile minimal --component rustfmt clippy
- name: Check format
shell: bash
run: rustup run ${{ matrix.rust }} cargo fmt --all -- --check
- name: Clippy
shell: bash
run: rustup run ${{ matrix.rust }} cargo clippy --all -- -D warnings
- name: Build
shell: bash
run: rustup run ${{ matrix.rust }} cargo build --all
- name: Test
shell: bash
run: rustup run ${{ matrix.rust }} cargo test --all