Skip to content

build(deps): bump serde_json from 1.0.132 to 1.0.133 #72

build(deps): bump serde_json from 1.0.132 to 1.0.133

build(deps): bump serde_json from 1.0.132 to 1.0.133 #72

Workflow file for this run

name: Check code quality
on:
push:
branches: ["main"]
paths-ignore:
- "**.md"
- "docs/**"
pull_request:
branches: ["main"]
paths-ignore:
- "**.md"
- "docs/**"
jobs:
code-quality:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install build tools and ALSA dependencies
run: |
sudo apt-get update && sudo apt-get install -y libasound2-dev
- name: Install Rust stable
run: rustup toolchain install stable
- name: Cache Rust dependencies
uses: Swatinem/rust-cache@v2
- name: Check code formatting
run: cargo fmt --all -- --check
- name: Check Clippy lints
run: cargo clippy --all-targets -- -D warnings