summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/phpunit.yml20
1 files changed, 20 insertions, 0 deletions
diff --git a/.github/workflows/phpunit.yml b/.github/workflows/phpunit.yml
index ce6c0bed..312b60de 100644
--- a/.github/workflows/phpunit.yml
+++ b/.github/workflows/phpunit.yml
@@ -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 \ No newline at end of file