Skip to content

Release nal 0.9.0, nal-async 0.8.0. #196

Release nal 0.9.0, nal-async 0.8.0.

Release nal 0.9.0, nal-async 0.8.0. #196

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: stable
components: rustfmt
- run: cargo fmt --all -- --check
working-directory: embedded-nal-async