Skip to content

Commit

Permalink
Merge pull request nextcloud#3890 from nextcloud/backport/3879/stable6.0
Browse files Browse the repository at this point in the history
[stable6.0] chore(CI): add summary step
  • Loading branch information
hamza221 authored Apr 18, 2024
2 parents c79e19a + 81f371c commit c6ded6d
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/phpunit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -215,3 +215,23 @@ jobs:
# - name: PHPUnit integration
# working-directory: apps/${{ env.APP_NAME }}
# run: ./vendor/phpunit/phpunit/phpunit -c phpunit.integration.xml

summary:

runs-on: ubuntu-latest
needs:
- php
- mysql
- pgsql

if: always()

name: php-test-summary

steps:
- name : Sqlite test status
run: if ${{ needs.php.result != 'success' && needs.php.result != 'skipped' }}; then exit 1; fi
- name : Mysql test status
run: if ${{ needs.mysql.result != 'success' && needs.mysql.result != 'skipped' }}; then exit 1; fi
- name : Pgsql test status
run: if ${{ needs.pgsql.result != 'success' && needs.pgsql.result != 'skipped' }}; then exit 1; fi

0 comments on commit c6ded6d

Please sign in to comment.