Skip to content

USB HID support

USB HID support #125

Workflow file for this run

name: Cargo
on: [push, pull_request]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: cargo build --verbose
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: cargo test --verbose
format-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: cargo fmt --check
clippy-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: cargo clippy