Procházet zdrojové kódy

Update rustfmt.yaml

Román Cárdenas před 1 rokem
rodič
revize
2e870e7b3c
1 změnil soubory, kde provedl 5 přidání a 11 odebrání
  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