nerdexam
GitHub

GITHUB-ACTIONS · Question #47

How many jobs will result from the following matrix configuration?

The correct answer is D. 6 jobs. The matrix configuration specifies two variables: color and animal. The color variable has 2 values (green and pink), and the animal variable has 2 values (owl and magpie). This would result in 4 more combinations (color: blue and animal: owl; color: pink and animal: magpie).

GitHub Actions - Workflow Configuration

Question

How many jobs will result from the following matrix configuration?

Options

  • A3 jobs
  • B4 jobs
  • C5 jobs
  • D6 jobs

How the community answered

(26 responses)
  • A
    19% (5)
  • B
    4% (1)
  • C
    8% (2)
  • D
    69% (18)

Explanation

The matrix configuration specifies two variables: color and animal. The color variable has 2 values (green and pink), and the animal variable has 2 values (owl and magpie). This would result in 4 more combinations (color: blue and animal: owl; color: pink and animal: magpie).

Topics

#matrix strategy#job matrix#workflow configuration

Community Discussion

No community discussion yet for this question.

Full GITHUB-ACTIONS Practice