Update rubato requirement from 0.15 to 0.16 #523
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
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow | |
name: msrv | |
# read-only repo token, no access to secrets | |
permissions: | |
contents: read | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
check-workspace: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install ALSA and Jack dependencies | |
run: | | |
sudo apt-get update && sudo apt-get install -y libasound2-dev libjack-jackd2-dev cmake | |
- name: Install Rust toolchain | |
# Aligned with `rust-version` in `Cargo.toml` | |
uses: dtolnay/rust-toolchain@1.71 | |
- name: Check out repository | |
uses: actions/checkout@v3 | |
- name: Generate Cargo.lock | |
run: cargo generate-lockfile | |
- name: Cache Rust toolchain and build artifacts | |
uses: Swatinem/rust-cache@v2 | |
with: | |
# The cache should not be shared between different workflows and jobs. | |
shared-key: ${{ github.workflow }}-${{ github.job }} | |
- name: Check workspace | |
run: cargo check --locked --workspace --verbose --all-targets --all-features | |
- name: Build package | |
run: cargo package --locked --verbose --all-features |