Browse Source

Attempt to use GH actions for rustfmt check (#207)

Use GH actions for rustfmt check
Daniel Egger 4 years ago
parent
commit
5754bb7bc6
1 changed files with 20 additions and 0 deletions
  1. 20 0
      .github/workflows/rustfmt.yml

+ 20 - 0
.github/workflows/rustfmt.yml

@@ -0,0 +1,20 @@
+on: [push, pull_request]
+
+name: Code formatting check
+
+jobs:
+  fmt:
+    name: Rustfmt
+    runs-on: ubuntu-latest
+    steps:
+      - uses: actions/checkout@v2
+      - uses: actions-rs/toolchain@v1
+        with:
+          profile: minimal
+          toolchain: stable
+          override: true
+      - run: rustup component add rustfmt
+      - uses: actions-rs/cargo@v1
+        with:
+          command: fmt
+          args: --all -- --check