Fast Forward Test Suite #17
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: "Fast Forward Test Suite" | |
| on: | |
| push: | |
| pull_request: | |
| types: | |
| - opened | |
| - synchronize | |
| - reopened | |
| workflow_dispatch: | |
| inputs: | |
| publish-required-statuses: | |
| description: Mirror required test matrix checks as commit statuses for workflow-dispatched runs. | |
| required: false | |
| type: boolean | |
| default: false | |
| permissions: | |
| contents: read | |
| statuses: write | |
| jobs: | |
| tests: | |
| uses: php-fast-forward/.github/.github/workflows/tests.yml@task/2-extract-shared-workflows | |
| with: | |
| dev-tools-version: ^1.0 | |
| publish-required-statuses: ${{ github.event_name == 'workflow_dispatch' && inputs.publish-required-statuses || false }} |