🔥 3-day streak
GitHub Actions (GH-200)88 / 142
Question 88 of 142

A developer defines the following matrix strategy in a workflow job named `test`: ```yaml jobs: test: strategy: matrix: os: [ubuntu-latest, windows-latest] node: [16, 18, 20] include: - os: ubuntu-latest node: 20 experimental: true runs-on: ${{ matrix.os }} ``` In the Actions UI checks list, one variant appears as `test (ubuntu-latest, 20, true)` and shows a red X, while `test (ubuntu-latest, 20)` is not listed separately. What does this tell you about the failed variant?

Reviewed for accuracy · Report an issueNext question