print all steps that we are running with

This commit is contained in:
Viktor Barzin 2025-05-11 19:13:19 +00:00
parent 9134145e02
commit 962c9a2f38
No known key found for this signature in database
GPG key ID: 4056458DBDBF8863

View file

@ -25,6 +25,7 @@ steps_to_handlers = {
type=click.Choice(steps_to_handlers.keys())
)
def main(step: list[str]):
click.echo(f'Running steps: {step}')
for s in step:
click.echo(f'Calling handler for step: {s}')
steps_to_handlers[s]()