diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index fbcb09a..5042a0f 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -88,11 +88,12 @@ jobs: name: Final Results if: ${{ always() }} runs-on: ubuntu-latest - needs: [lib, stm32f4-event-printer] + needs: + - lib + - stm32f4-event-printer steps: - - name: check for failed builds of the library - if: ${{ needs.lib.result != 'success' }} - run: exit 1 - - name: check for failed builds of the example - if: ${{ needs.stm32f4-event-printer.result != 'success' }} - run: exit 1 + - name: "check for failed builds" + run: | + cat <