From 75c637d0d36994ce14b5be6f542ee8fba2197cc9 Mon Sep 17 00:00:00 2001 From: Markus Reiter Date: Sat, 28 Nov 2020 16:51:47 +0100 Subject: [PATCH] Always run `conclusion`. --- .github/workflows/tests.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 649595fe6d..7d90565a5f 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -241,5 +241,13 @@ jobs: - docker - test-default-formula runs-on: ubuntu-latest + if: always() steps: - - run: true + - run: > + ${{ + needs.syntax.result == 'success' && + needs.tap-syntax.result == 'success' && + needs.docker.result == 'success' && + needs.tests.result == 'success' && + needs.test-default-formula.result == 'success' + }}