Skip to content

Release 6.0.0

Release 6.0.0 #470

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