Method: Highway::Steps::Step.run

Defined in:
lib/highway/steps/step.rb

.run(parameters:, context:, report:) ⇒ Void

Run the step in given context containing inputs and Fastlane runner.

Parameters:

Returns:

  • (Void)

Raises:

  • (NotImplementedError)
[View source]

45
46
47
# File 'lib/highway/steps/step.rb', line 45

def self.run(parameters:, context:, report:)
  raise NotImplementedError.new("You must override `#{__method__.to_s}` in `#{self.class.to_s}`.")
end