Skip to content

Bump the dependencies group with 5 updates #82

Bump the dependencies group with 5 updates

Bump the dependencies group with 5 updates #82

Workflow file for this run

name: Build
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: prepare
run: |
sudo apt update
sudo apt install -y pkg-config libudev-dev
- name: Build
run: cargo build --verbose --all-targets
- name: Run tests
run: cargo test --verbose
- name: clippy
run: cargo clippy --all-targets --all-features -- -W clippy::dbg_macro