Skip to content

add github workflow (cargo clippy) #2

add github workflow (cargo clippy)

add github workflow (cargo clippy) #2

Workflow file for this run

name: tests
on:
- push
- pull_request
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
rust:
- stable
steps:
- uses: actions/checkout@v3
- name: install alsa and udev
run: sudo apt-get update; sudo apt-get install --no-install-recommends libasound2-dev libudev-dev
if: runner.os == 'linux'
- run: cargo clippy
- run: cargo test