From 194180105544471724e9d7370a4d9aec1d7e9592 Mon Sep 17 00:00:00 2001 From: Martin von Zweigbergk Date: Tue, 23 Mar 2021 10:30:05 -0700 Subject: [PATCH] github: add Clippy check to CI --- .github/workflows/build.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 85d0cfb6e..f036134a8 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -27,3 +27,19 @@ jobs: - name: Test run: | cargo test --workspace --verbose + + clippy: + name: Clippy check + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: actions-rs/toolchain@v1 + with: + toolchain: nightly + components: clippy + override: true + - run: rustup component add clippy + - uses: actions-rs/clippy-check@v1 + with: + token: ${{ secrets.GITHUB_TOKEN }} + args: --all-features --workspace