diff --git a/hello.py b/hello.py index 4ecfad2..54e75a1 100644 --- a/hello.py +++ b/hello.py @@ -1,6 +1,6 @@ from metaflow import FlowSpec, step, card, schedule -class HelloFlow(FlowSpec): +class GitHubActionsDemo(FlowSpec): @step def start(self): @@ -13,4 +13,4 @@ def end(self): print(self.x) if __name__ == "__main__": - HelloFlow() + GitHubActionsDemo()