aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDario Nieuwenhuis <[email protected]>2021-03-29 22:31:26 +0200
committerDario Nieuwenhuis <[email protected]>2021-03-29 22:31:26 +0200
commitfa17644d8ee0c9786e5abe3732c8e80f1ee9af1e (patch)
tree48e1db88d3c4a54891f6a3b86a0bf19f34948ea0
parentd938b95430d543d8a97e611642ef09d803b7bdc1 (diff)
ci: fmtcheck all crates individually since there's no workspace anymore.
-rw-r--r--.github/workflows/rust.yml6
1 files changed, 2 insertions, 4 deletions
diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml
index 178ccf89c..7b04a9947 100644
--- a/.github/workflows/rust.yml
+++ b/.github/workflows/rust.yml
@@ -93,7 +93,5 @@ jobs:
93 toolchain: nightly 93 toolchain: nightly
94 components: rustfmt 94 components: rustfmt
95 override: true 95 override: true
96 - uses: actions-rs/cargo@v1 96 - name: Check fmt
97 with: 97 run: for i in embassy-*; do (cd $i; cargo fmt -- --check); done
98 command: fmt
99 args: --all -- --check