docs: add musb to hardware driver list
#178
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| on: | |
| push: | |
| branches: [ staging, trying, master ] | |
| pull_request: | |
| name: Code formatting check | |
| jobs: | |
| fmt: | |
| name: Rustfmt | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: dtolnay/rust-toolchain@stable | |
| with: | |
| components: rustfmt | |
| - run: cargo fmt --all -- --check | |
| - run: cargo clippy --all-features | |
| - run: cargo clippy --features defmt | |
| - run: cargo clippy --features log | |
| - run: cargo clippy |