(job *actionlint.Job)
| 142 | } |
| 143 | |
| 144 | func getJobStrategyMatrixRows(job *actionlint.Job) map[string]*actionlint.MatrixRow { |
| 145 | if job != nil && job.Strategy != nil && job.Strategy.Matrix != nil { |
| 146 | return job.Strategy.Matrix.Rows |
| 147 | } |
| 148 | return nil |
| 149 | } |
| 150 | |
| 151 | func getJobStrategyMatrixIncludeCombinations(job *actionlint.Job) []*actionlint.MatrixCombination { |
| 152 | if job != nil && job.Strategy != nil && job.Strategy.Matrix != nil && job.Strategy.Matrix.Include != nil && |