summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHamza Mahjoubi <hamzamahjoubi221@gmail.com>2024-04-09 17:29:01 +0200
committerbackportbot[bot] <backportbot[bot]@users.noreply.github.com>2024-04-18 09:42:33 +0000
commit6c084eeb9098fc337a07ddc599113999a17c5d9e (patch)
tree05487676953cd02f985d835398dd7f04e29bee6a
parent711d5dbdfcdffcafcbfdb1ba2eb63a41525d5a7e (diff)
chore(CI): add summary stepbackport/3879/stable5.5
Signed-off-by: Hamza Mahjoubi <hamzamahjoubi221@gmail.com>
-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 d35675ac..2ea73f67 100644
--- a/.github/workflows/phpunit.yml
+++ b/.github/workflows/phpunit.yml
@@ -227,3 +227,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