POC - Matrix Naming Test #7
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: POC - Matrix Naming Test | |
| on: | |
| workflow_dispatch: | |
| jobs: | |
| # Direct call (2 levels: parent -> child) | |
| direct-call: | |
| name: ${{ matrix.args.name }} | |
| uses: ./.github/workflows/poc-child-direct.yaml | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| args: | |
| - name: direct-test-alpha | |
| param: alpha | |
| - name: direct-test-beta | |
| param: beta | |
| with: | |
| test-param: ${{ matrix.args.param }} | |
| # Nested call (3 levels: parent -> child-nested -> grandchild) | |
| nested-call: | |
| uses: ./.github/workflows/poc-child-nested.yaml | |
| strategy: | |
| fail-fast: false |