From: Steve Myers Date: Wed, 16 Dec 2020 23:29:46 +0000 (-0800) Subject: [ci] Remove unneeded skip step conditionals in CI X-Git-Tag: v0.2.0~8 X-Git-Url: http://internal-gitweb-vhost/%22https:/parse/scripts/database/-script/-debug/struct.Decoder.html?a=commitdiff_plain;h=b8c6732c74bf7d4558a85d39a9e423347acf5ea0;p=bdk [ci] Remove unneeded skip step conditionals in CI --- diff --git a/.github/workflows/cont_integration.yml b/.github/workflows/cont_integration.yml index e77036cc..25f4e45f 100644 --- a/.github/workflows/cont_integration.yml +++ b/.github/workflows/cont_integration.yml @@ -22,13 +22,6 @@ jobs: - compact_filters - cli-utils,esplora,key-value-db,electrum - compiler - include: - - rust: stable - features: compact_filters - clippy: skip - - rust: 1.45.0 - features: compact_filters - clippy: skip steps: - name: checkout uses: actions/checkout@v2 @@ -51,10 +44,8 @@ jobs: - name: Build run: cargo build --features ${{ matrix.features }} --no-default-features - name: Clippy - if: ${{ matrix.rust == 'stable' && matrix.clippy != 'skip' }} run: cargo clippy -- -D warnings - name: Test - if: ${{ matrix.test != 'skip' }} run: cargo test --features ${{ matrix.features }} --no-default-features test-readme-examples: