Update cubeb dependencies to 0.13 #237
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | |