Skip to content

POC - Matrix Naming Test #7

POC - Matrix Naming Test

POC - Matrix Naming Test #7

Workflow file for this run

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