From 4aedf08a95a11864728f0106928687e64a792169 Mon Sep 17 00:00:00 2001 From: Deirdre Connolly Date: Sat, 20 Mar 2021 23:57:13 -0400 Subject: [PATCH] Merge pull request #1927 from ZcashFoundation/ci Add final job to ci.yml that passes when all other ci.yml jobs pass --- .github/workflows/ci.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1e526de48..74f0f10d2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,6 +9,18 @@ on: jobs: + ci-success: + name: 🏁 + runs-on: ubuntu-latest + needs: + - test + - build + - build-chain-no-features + - clippy + - fmt + steps: + - run: exit 0 + test: name: Test (+${{ matrix.rust }}) on ${{ matrix.os }} # The large timeout is to accommodate Windows builds