Closed
Description
Describe the issue
GitHub Actions Questions > Question 014 's answer is not correct
"!Q14 :this code will launch 6 different jobs in parallel using the matrix strategy. Can you use the matrix strategy to parallelize entire workflows"
it should be "YES" not "NO"
beucase :
the provided code will launch 6 different jobs in parallel using the matrix strategy.
Here's how it works:
The matrix contains:
3 version values: 10, 12, and 14
2 os values: ubuntu-latest and windows-latest
This creates
3 × 2 = 6
3×2=6 unique combinations of version and os, and each combination corresponds to a separate job.
thanks..