From 8e7d8312a943516e9110214ce18ccd9420602a04 Mon Sep 17 00:00:00 2001 From: Steve Myers Date: Thu, 8 Apr 2021 14:44:35 -0700 Subject: [PATCH] [ci] Update 'build-test' job to clippy check all-targets --- .github/workflows/cont_integration.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cont_integration.yml b/.github/workflows/cont_integration.yml index b0080925..3a92f052 100644 --- a/.github/workflows/cont_integration.yml +++ b/.github/workflows/cont_integration.yml @@ -46,7 +46,7 @@ jobs: - name: Build run: cargo build --features ${{ matrix.features }} --no-default-features - name: Clippy - run: cargo clippy --features ${{ matrix.features }} --no-default-features -- -D warnings + run: cargo clippy --all-targets --features ${{ matrix.features }} --no-default-features -- -D warnings - name: Test run: cargo test --features ${{ matrix.features }} --no-default-features @@ -151,7 +151,7 @@ jobs: run: rustup default 1.51.0 # STABLE - name: Set profile run: rustup set profile minimal - - name: Add clippy + - name: Add rustfmt run: rustup component add rustfmt - name: Update toolchain run: rustup update