Skip to content

Merge branch 'main' into next #11897

Merge branch 'main' into next

Merge branch 'main' into next #11897

name: 🐘 Combined PHP Build
on:
push:
branches-ignore: [main]
tags: ['*']
workflow_call:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
packages: write
actions: write
jobs:
call-php-code-quality:
uses: ./.github/workflows/php-code-quality.yaml
call-php-unit-tests:
uses: ./.github/workflows/php-unit-tests.yaml
call-php-build-images:
needs: [call-php-code-quality, call-php-unit-tests]
if: |
always() &&
needs.call-php-code-quality.result == 'success' &&
needs.call-php-unit-tests.result == 'success'
uses: ./.github/workflows/php-build-images.yaml