浏览代码

add rustfmt check

Ales Katona 3 年之前
父节点
当前提交
6c38fd30a4
共有 1 个文件被更改,包括 24 次插入0 次删除
  1. 24 0
      .github/workflows/rustfmt.yaml

+ 24 - 0
.github/workflows/rustfmt.yaml

@@ -0,0 +1,24 @@
+
+on:
+  push:
+    branches: [ staging, trying, master ]
+  pull_request:
+
+name: Code formatting check
+
+jobs:
+  fmt:
+    name: Rustfmt
+    runs-on: ubuntu-20.04
+    steps:
+      - uses: actions/checkout@v2
+      - uses: actions-rs/toolchain@v1
+        with:
+          profile: minimal
+          toolchain: stable
+          override: true
+          components: rustfmt
+      - uses: actions-rs/cargo@v1
+        with:
+          command: fmt
+          args: --all -- --check