From b1efd68f2768e727b3381ab850e7c0f335825371 Mon Sep 17 00:00:00 2001 From: David Peter Date: Sat, 29 Jan 2022 12:48:19 +0100 Subject: [PATCH] Add clippy run in CI/CD --- .github/workflows/CICD.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/CICD.yml b/.github/workflows/CICD.yml index 43f9078..a40f409 100644 --- a/.github/workflows/CICD.yml +++ b/.github/workflows/CICD.yml @@ -46,11 +46,18 @@ jobs: steps: - name: Checkout source code uses: actions/checkout@v2 + - name: Install rust toolchain (v${{ env.MIN_SUPPORTED_RUST_VERSION }}) uses: actions-rs/toolchain@v1 with: toolchain: ${{ env.MIN_SUPPORTED_RUST_VERSION }} default: true + components: clippy + - name: Run clippy (on minimum supported rust version to prevent warnings we can't fix) + uses: actions-rs/cargo@v1 + with: + command: clippy + args: --locked --all-targets --all-features profile: minimal # minimal component installation (ie, no documentation) - name: Run tests uses: actions-rs/cargo@v1