ci: fmtcheck all crates individually since there's no workspace anymore.

This commit is contained in:
Dario Nieuwenhuis 2021-03-29 22:31:26 +02:00
parent d938b95430
commit fa17644d8e

View File

@ -93,7 +93,5 @@ jobs:
toolchain: nightly toolchain: nightly
components: rustfmt components: rustfmt
override: true override: true
- uses: actions-rs/cargo@v1 - name: Check fmt
with: run: for i in embassy-*; do (cd $i; cargo fmt -- --check); done
command: fmt
args: --all -- --check