First look at splitting the whole build workflow into a matrix #346
This file contains 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 PHP binaries (parent workflow) | |
on: | |
push: | |
branches: "**" | |
tags-ignore: "php-**" | |
pull_request: | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
everything: | |
strategy: | |
matrix: | |
pm-version-major: [4, 5] | |
uses: ./.github/workflows/build.yml | |
with: | |
pm-version-major: ${{ matrix.pm-version-major }} | |
secrets: inherit |