Creates a step that executes the provided file.
Add more command line arguments via methods of Step.Run.
See also:
addSystemCommandaddRunArtifactpub fn addRunFile(b: *Build, executable: LazyPath) *Step.Run
pub fn addRunFile(b: *Build, executable: LazyPath) *Step.Run {
const run_step = Step.Run.create(b, b.fmt("run {f}", .{executable}));
run_step.addFileArg(executable);
return run_step;
}