Skip to content

Use stabilized ip_in_core feature #189

Use stabilized ip_in_core feature

Use stabilized ip_in_core feature #189

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@nightly # TODO, TEMPORARY: Requires 1.77
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 # TODO, TEMPORARY: Requires 1.77
components: rustfmt
- run: cargo fmt --all -- --check
working-directory: embedded-nal-async