summaryrefslogtreecommitdiff
path: root/.github/workflows/style.yml
diff options
context:
space:
mode:
authorNadrieril2020-03-18 15:55:19 +0000
committerNadrieril2020-03-18 15:55:19 +0000
commit9538d9c2b13ea24d3f9a83946f65ac62693ae9b0 (patch)
treeaae2a9c07e99ffb9724e3bb61189dfbd10610444 /.github/workflows/style.yml
parenta9153f0cd7980f7cd51e5376d7afdfa372973d6a (diff)
Reorganize CI workflows
Diffstat (limited to '.github/workflows/style.yml')
-rw-r--r--.github/workflows/style.yml46
1 files changed, 46 insertions, 0 deletions
diff --git a/.github/workflows/style.yml b/.github/workflows/style.yml
new file mode 100644
index 0000000..1b71ad7
--- /dev/null
+++ b/.github/workflows/style.yml
@@ -0,0 +1,46 @@
+name: Style checks
+
+on:
+ push:
+ branches: [ master ]
+ pull_request:
+ branches: [ master ]
+
+jobs:
+ fmt:
+ name: Rustfmt
+ runs-on: ubuntu-latest
+ steps:
+ - name: Checkout branch
+ uses: actions/checkout@master
+ with:
+ submodules: true
+ - name: Setup Rust toolchain
+ uses: actions-rs/toolchain@v1
+ with:
+ profile: minimal
+ components: rustfmt
+ - name: Run rustfmt
+ uses: actions-rs/cargo@v1
+ with:
+ command: fmt
+ args: --all -- --check
+
+ clippy:
+ name: Clippy
+ runs-on: ubuntu-latest
+ steps:
+ - name: Checkout branch
+ uses: actions/checkout@master
+ with:
+ submodules: true
+ - name: Setup Rust toolchain
+ uses: actions-rs/toolchain@v1
+ with:
+ profile: minimal
+ components: clippy
+ - name: Run clippy
+ uses: actions-rs/cargo@v1
+ with:
+ command: clippy
+ args: -- -D warnings