linux-embedded-hal 0.4.0

Implementation of the `embedded-hal` traits for Linux devices
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
on:
  push: # Run CI for all branches except GitHub merge queue tmp branches
    branches-ignore:
    - "gh-readonly-queue/**"
  pull_request: # Run CI for PRs on any branch
  merge_group: # Run CI for the GitHub merge queue

name: Clippy check
jobs:
  clippy_check:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - uses: dtolnay/rust-toolchain@master
        with:
          toolchain: 1.73.0
          components: clippy
      - run: cargo clippy --all-features -- --deny=warnings