fix(ZMSKVR): fail Psalm CI when findings exist, still upload SARIF #11605
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: 🐘 Combined PHP Build | |
| on: | |
| push: | |
| branches-ignore: [main] | |
| tags: ['*'] | |
| workflow_call: | |
| 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 |