Skip to content

Bump clap from 4.5.53 to 4.5.54 #32

Bump clap from 4.5.53 to 4.5.54

Bump clap from 4.5.53 to 4.5.54 #32

Workflow file for this run

name: Rust
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Install System Deps
run: sudo apt-get update && sudo apt-get install libudev-dev
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: Build
run: cargo build --verbose --locked
- name: Run tests
run: cargo test --verbose --locked