From: Steve Myers Date: Thu, 8 Apr 2021 21:44:35 +0000 (-0700) Subject: [ci] Update 'build-test' job to clippy check all-targets X-Git-Tag: v0.7.0~18^2~1 X-Git-Url: http://internal-gitweb-vhost/script/%22https:/database/progress.html?a=commitdiff_plain;h=8e7d8312a943516e9110214ce18ccd9420602a04;p=bdk [ci] Update 'build-test' job to clippy check all-targets --- 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