Skip to content

Added a couple more descriptive comments #273

Added a couple more descriptive comments

Added a couple more descriptive comments #273

Workflow file for this run

on: [push]
name: build
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: install libudev
run: sudo apt-get install libudev-dev
- name: build
uses: actions-rs/cargo@v1
with:
command: build
env:
RUSTFLAGS: "-D warnings"
- name: test
uses: actions-rs/cargo@v1
with:
command: test
- name: lint
uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}