Skip to content

Impl USB2.0 Hub class driver #69

Impl USB2.0 Hub class driver

Impl USB2.0 Hub class driver #69

Workflow file for this run

name: Rust lint & test
on: pull_request
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout Crate
uses: actions/checkout@v3
- name: Set Toolchain
# https://github.com/dtolnay/rust-toolchain
uses: dtolnay/rust-toolchain@master
with:
toolchain: nightly
components: rustfmt, clippy
- name: Run check
run: make check
- name: Run rustfmt
run: make fmt_ci
- name: Run clippy
run: make clippy_ci
test:
runs-on: ubuntu-latest
steps:
- name: Checkout Crate
uses: actions/checkout@v3
- name: Set Toolchain
# https://github.com/dtolnay/rust-toolchain
uses: dtolnay/rust-toolchain@master
with:
toolchain: nightly
- name: Run test
run: make test_all