diff --git a/pkg/runner/runner.go b/pkg/runner/runner.go index e5646c2..af30305 100644 --- a/pkg/runner/runner.go +++ b/pkg/runner/runner.go @@ -121,6 +121,7 @@ func New(runnerConfig *Config) (Runner, error) { } // NewPlanExecutor ... +// //nolint:gocyclo func (runner *runnerImpl) NewPlanExecutor(plan *model.Plan) common.Executor { maxJobNameLen := 0 @@ -156,6 +157,7 @@ func (runner *runnerImpl) NewPlanExecutor(plan *model.Plan) common.Executor { } for i, matrix := range matrixes { + matrix := matrix rc := runner.newRunContext(ctx, run, matrix) rc.JobName = rc.Name if len(matrixes) > 1 {