From: Steve Myers Date: Thu, 29 Oct 2020 04:35:15 +0000 (-0700) Subject: [ci] Enable clippy for stable and tests by default X-Git-Tag: v0.2.0~88 X-Git-Url: http://internal-gitweb-vhost/script/%22https:/database/-debug/static/gitweb.css?a=commitdiff_plain;h=4a75f96d352096db7c33cf7321272e87fb9e2f6d;p=bdk [ci] Enable clippy for stable and tests by default --- diff --git a/.github/workflows/cont_integration.yml b/.github/workflows/cont_integration.yml index 306b86de..5a588c15 100644 --- a/.github/workflows/cont_integration.yml +++ b/.github/workflows/cont_integration.yml @@ -20,15 +20,15 @@ jobs: - key-value-db - electrum - compact_filters - - cli-utils,esplora + - cli-utils,esplora,key-value-db,electrum - compiler include: - rust: stable features: compact_filters - clippy: false + clippy: skip - rust: 1.45.0 features: compact_filters - clippy: false + clippy: skip steps: - name: checkout uses: actions/checkout@v2 @@ -53,12 +53,13 @@ jobs: command: build args: --features ${{ matrix.features }} --no-default-features - name: clippy - if: ${{ matrix.clippy == true }} + if: ${{ matrix.rust == 'stable' && matrix.clippy != 'skip' }} uses: actions-rs/cargo@v1 with: command: clippy args: -- -D warnings - name: test + if: ${{ matrix.test != 'skip' }} uses: actions-rs/cargo@v1 with: command: test