Skip to content

Test new trait

Test new trait #53

Workflow file for this run

on: [push, pull_request]
name: CI
env:
CARGO_INCREMENTAL: 0
jobs:
test:
name: Tests
runs-on: ubuntu-latest
steps:
- name: Install development libraries
run: sudo apt update && sudo apt install -y libasound2-dev libudev-dev
- name: Checkout sources
uses: actions/checkout@v4
- name: cargo test
run: cargo test
- name: cargo test --all-features
run: cargo test --all-features
fmt:
name: Check formatting
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: cargo fmt -- --check
run: cargo fmt -- --check