github.com/pf-qiu/concourse/v6@v6.7.3-0.20201207032516-1f455d73275f/atc/exec/identity_step.go (about)

     1  package exec
     2  
     3  import (
     4  	"context"
     5  )
     6  
     7  // IdentityStep does nothing.
     8  type IdentityStep struct{}
     9  
    10  // Run does nothing... successfully.
    11  func (IdentityStep) Run(context.Context, RunState) (bool, error) {
    12  	return true, nil
    13  }