aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorDario Nieuwenhuis <[email protected]>2021-08-04 15:35:44 +0200
committerGitHub <[email protected]>2021-08-04 15:35:44 +0200
commit07a095be0d439a0977de09aa5341885cbf399f06 (patch)
treef668bd34e5e7e3c48bc1aa5b676dd248a762d0bb /.github/workflows
parentf574e553950848456afc9aadffa8ed49cb1436fc (diff)
parenta1a5acb82545d1834a769620a0cd69c1e340ff60 (diff)
Merge pull request #343 from embassy-rs/rustfmt-everything
Rustfmt everything
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/rust.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml
index 118143daa..d11bc8d41 100644
--- a/.github/workflows/rust.yml
+++ b/.github/workflows/rust.yml
@@ -122,7 +122,7 @@ jobs:
122 with: 122 with:
123 toolchain: stable 123 toolchain: stable
124 - name: Check fmt 124 - name: Check fmt
125 run: for i in embassy-*; do (cd $i; cargo fmt -- --check); done 125 run: find -name '*.rs' | xargs rustfmt --check --skip-children --unstable-features --edition 2018
126 126
127 test: 127 test:
128 runs-on: ubuntu-latest 128 runs-on: ubuntu-latest