AdvancedVocabulary#github-actions#ci-cd#matrix#devops#automation

GitHub Actions Matrix Strategy

Matrix strategies in GitHub Actions generate multiple jobs from dimension combinations, enabling parallel cross-platform and cross-version testing. Master vocabulary for Cartesian product generation, include/exclude syntax, fail-fast behavior, the experimental pattern, and the 256-job limit.

0 / 5 completed
1 / 5
A workflow defines matrix: { os: ['ubuntu-latest', 'windows-latest'], node: [18, 20, 22] }. How many jobs does GitHub Actions create?