Skip to content

Commit

Permalink
fixed self.x
Browse files Browse the repository at this point in the history
  • Loading branch information
tuulos committed May 19, 2024
1 parent b73c836 commit 2a0f5b7
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions hello.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,12 @@ class GitHubActionsDemo(FlowSpec):

@step
def start(self):
self.x = 123
print("Hello world!")
print("Hello GitHub Actions!")
self.next(self.end)

@step
def end(self):
print(self.x)
print('fixed')

if __name__ == "__main__":
GitHubActionsDemo()

0 comments on commit 2a0f5b7

Please sign in to comment.