Skip to content

Remove optional types from manager.rs, simplify usage #37

Remove optional types from manager.rs, simplify usage

Remove optional types from manager.rs, simplify usage #37

Workflow file for this run

name: Lint & Clippy
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
lint:
name: Rust Linting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install system dependencies
run: sudo apt-get update && sudo apt-get install -y libjack-jackd2-dev pkg-config
- name: Set up Rust
uses: dtolnay/rust-toolchain@stable
- name: Check formatting
run: cargo fmt --check
- name: Run Clippy
run: cargo clippy -- -D warnings
- name: Check compilation
run: cargo check