matrix is done

Signed-off-by: Casey Lee <cplee@nektos.com>
This commit is contained in:
Casey Lee
2020-02-20 21:06:03 -05:00
parent 5b7019cd0b
commit f8fb88816a
8 changed files with 219 additions and 46 deletions
+3
View File
@@ -187,6 +187,9 @@ func ReadWorkflow(in io.Reader) (*Workflow, error) {
func (w *Workflow) GetJob(jobID string) *Job {
for id, j := range w.Jobs {
if jobID == id {
if j.Name == "" {
j.Name = id
}
return j
}
}