Always run conclusion.

This commit is contained in:
Markus Reiter 2020-11-28 16:51:47 +01:00
parent 2c34167131
commit 75c637d0d3

View File

@ -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'
}}