Skip to content

Commit

Permalink
chore: fix client_* matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
shortcuts committed Mar 14, 2022
1 parent c8d5256 commit 556689d
Showing 1 changed file with 15 additions and 3 deletions.
18 changes: 15 additions & 3 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,11 @@ jobs:
- setup
- specs
- client_javascript_common
if: ${{ needs.setup.outputs.RUN_JS == 'true' }}
if: |
always() &&
needs.setup.outputs.RUN_JS == 'true' &&
contains(needs.*.result, 'success') &&
!contains(needs.*.result, 'failure')
strategy:
matrix: ${{ fromJSON(needs.setup.outputs.JS_MATRIX) }}
steps:
Expand Down Expand Up @@ -172,7 +176,11 @@ jobs:
needs:
- setup
- specs
if: ${{ needs.setup.outputs.RUN_JAVA == 'true' }}
if: |
always() &&
needs.setup.outputs.RUN_JAVA == 'true' &&
contains(needs.*.result, 'success') &&
!contains(needs.*.result, 'failure')
strategy:
matrix: ${{ fromJSON(needs.setup.outputs.JAVA_MATRIX) }}
steps:
Expand Down Expand Up @@ -211,7 +219,11 @@ jobs:
needs:
- setup
- specs
if: ${{ needs.setup.outputs.RUN_PHP == 'true' }}
if: |
always() &&
needs.setup.outputs.RUN_PHP == 'true' &&
contains(needs.*.result, 'success') &&
!contains(needs.*.result, 'failure')
strategy:
matrix: ${{ fromJSON(needs.setup.outputs.PHP_MATRIX) }}
steps:
Expand Down

0 comments on commit 556689d

Please sign in to comment.