feat: add Clippy to CI

- enable Clippy on CI

Tested:
- No
This commit is contained in:
Alexander Zaitsev 2022-01-23 19:02:57 +03:00
parent e636399935
commit a5ae0bbe64

View file

@ -39,6 +39,25 @@ jobs:
command: test command: test
args: --all args: --all
clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
override: true
components: clippy
- name: clippy
uses: actions-rs/cargo@v1
with:
command: clippy
args: --all-targets --all-features -- -D warnings
check_fmt_and_docs: check_fmt_and_docs:
name: Checking fmt and docs name: Checking fmt and docs
runs-on: ubuntu-latest runs-on: ubuntu-latest