瀏覽代碼

Update rustfmt.yaml

Román Cárdenas 1 年之前
父節點
當前提交
2e870e7b3c
共有 1 個文件被更改,包括 5 次插入11 次删除
  1. 5 11
      .github/workflows/rustfmt.yaml

+ 5 - 11
.github/workflows/rustfmt.yaml

@@ -1,4 +1,3 @@
-
 on:
   push:
     branches: [ staging, trying, master ]
@@ -9,16 +8,11 @@ name: Code formatting check
 jobs:
   fmt:
     name: Rustfmt
-    runs-on: ubuntu-20.04
+    runs-on: ubuntu-latest
     steps:
-      - uses: actions/checkout@v2
-      - uses: actions-rs/toolchain@v1
+      - uses: actions/checkout@v3
+      - uses: dtolnay/rust-toolchain@stable
         with:
-          profile: minimal
-          toolchain: stable
-          override: true
           components: rustfmt
-      - uses: actions-rs/cargo@v1
-        with:
-          command: fmt
-          args: --all -- --check
+      - name: Run Rustfmt
+        run: cargo fmt --all -- --check --verbose