Skip to content

Update dependencies

Update dependencies #1

# SPDX-FileCopyrightText: The djio authors
# SPDX-License-Identifier: CC0-1.0
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow
name: build-and-test
permissions:
contents: read
on:
pull_request:
push:
branches:
- main
workflow_dispatch:
env:
CARGO_INCREMENTAL: 0
CARGO_TERM_COLOR: always
RUST_BACKTRACE: short
jobs:
build-and-test:
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 libudev-dev
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
- 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:
# Distinguished by the action name to avoid sharing between different actions.
shared-key: build-and-test
- name: Build tests
run: cargo test --locked --all-targets --all-features --no-run
- name: Run tests
run: cargo test --locked --all-targets --all-features -- --nocapture --quiet