Skip to content

Switch to Edition 2021, bump MSRV. #169

Switch to Edition 2021, bump MSRV.

Switch to Edition 2021, bump MSRV. #169

Workflow file for this run

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
fmt-async:
name: Rustfmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@master
with:
toolchain: nightly-2022-11-22
components: rustfmt
- run: cargo fmt --all -- --check
working-directory: embedded-nal-async