From b8c6732c74bf7d4558a85d39a9e423347acf5ea0 Mon Sep 17 00:00:00 2001 From: Steve Myers Date: Wed, 16 Dec 2020 15:29:46 -0800 Subject: [PATCH] [ci] Remove unneeded skip step conditionals in CI --- .github/workflows/cont_integration.yml | 9 --------- 1 file changed, 9 deletions(-) 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: