Skip to content

Update dependencies #131

Update dependencies

Update dependencies #131

# SPDX-FileCopyrightText: The djio authors
# SPDX-License-Identifier: CC0-1.0
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow
name: continuous-integration
permissions:
contents: read
on:
pull_request:
push:
branches:
- main
env:
CARGO_INCREMENTAL: 0
CARGO_TERM_COLOR: always
RUST_BACKTRACE: short
jobs:
continuous-integration:
name: Building project and running tests
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 across different actions!
shared-key: "continuous-integration"
- name: Build tests
run: cargo test --locked --all-targets --no-run
- name: Run tests
run: cargo test --locked --all-targets -- --nocapture --quiet