Skip to content

README.mkdn: Fixup name of feature for lpc55xpresso board. #60

README.mkdn: Fixup name of feature for lpc55xpresso board.

README.mkdn: Fixup name of feature for lpc55xpresso board. #60

Workflow file for this run

name: formatting
on:
pull_request:
jobs:
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@master
with:
toolchain: 1.69.0
components: rustfmt
- name: cargo fmt
run: cargo fmt --all -- --check
clippy:
name: cargo clippy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: 1.84.0
components: clippy
- run: cargo clippy -- --deny warnings