Release 6.0.0 #470
Workflow file for this run
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: build-pull-request | |
| # Thin caller: the matrix, the setup and the checks all live in build-master.yml, so the two | |
| # cannot drift. Previously this file duplicated them and ran ubuntu-latest only, which is why a | |
| # pinned PHP download URL could 404 and fail master on every push while every PR went green. | |
| # | |
| # Duplicating the setup block here also tripped Sonar: the PowerShell that downloads the PHP zip | |
| # and composer.phar counts as new code when copied into a new file, and it flags executing a | |
| # downloaded artifact without verification. Calling the workflow keeps that code in one place. | |
| on: | |
| pull_request: | |
| branches: | |
| - master | |
| - 'integration/**' | |
| - 'feature/**' | |
| jobs: | |
| build: | |
| uses: ./.github/workflows/build-master.yml | |
| secrets: inherit |