Browse Source

github: Run cargo fmt manually.

This should be seeing the rustfmt.toml file.
parazyd 4 years ago
parent
commit
3a07a9d729
1 changed files with 5 additions and 5 deletions
  1. 5 5
      .github/workflows/ci.yml

+ 5 - 5
.github/workflows/ci.yml

@@ -36,8 +36,8 @@ jobs:
         with:
         with:
           toolchain: stable
           toolchain: stable
           override: true
           override: true
-      - run: rustup component add rustfmt
-      - uses: actions-rs/cargo@v1
-        with:
-          command: fmt
-          args: -- --check
+      - run: |
+          rustup component add rustfmt
+          cargo fmt -- --check
+
+