CI build & reformat. (#1)

* CI build & reformat.

* Fix no default features builds.

* Fix v12 build.
This commit is contained in:
Tomasz Drwięga
2020-12-10 13:23:33 +01:00
committed by GitHub
parent 6826ca8a00
commit f8fa4d1338
6 changed files with 366 additions and 34 deletions
+35
View File
@@ -0,0 +1,35 @@
name: Check style
on:
pull_request:
push:
branches:
- master
tags:
- v*
paths-ignore:
- 'README.md'
jobs:
## Check stage
check-fmt:
name: Check RustFmt
runs-on: ubuntu-latest
env:
RUST_BACKTRACE: full
steps:
- name: Cancel Previous Runs
uses: styfle/cancel-workflow-action@0.4.1
with:
access_token: ${{ github.token }}
- name: Checkout sources & submodules
uses: actions/checkout@master
with:
fetch-depth: 5
submodules: recursive
- name: Add rustfmt
run: rustup component add rustfmt
- name: rust-fmt check
uses: actions-rs/cargo@master
with:
command: fmt
args: --all -- --check