Skip to content

ci: add workflow_dispatch for manual release triggers #5

ci: add workflow_dispatch for manual release triggers

ci: add workflow_dispatch for manual release triggers #5

Workflow file for this run

name: Test 🧪
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
test:
name: Run tests 🦀
timeout-minutes: 30
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: dtolnay/rust-toolchain@stable
with:
components: clippy, rustfmt
- name: Install dependencies
run: sudo apt-get update && sudo apt-get install -y libasound2-dev libudev-dev
- name: Check formatting
run: cargo fmt --check
- name: Clippy
run: cargo clippy -- -D warnings
- name: Run tests
run: cargo test