Skip to content

Commit 256f0b4

Browse files
committed
add cucumber
1 parent 8f32934 commit 256f0b4

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

hello.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
1-
from metaflow import FlowSpec, step, card, project
1+
from metaflow import FlowSpec, step, card, project, current
22

33
@project(name='mlproject')
44
class GitHubActionsDemo(FlowSpec):
55

66
@step
77
def start(self):
8+
self.x = 'cucumber'
9+
print('x is', self.x)
10+
print('branch is', current.branch_name)
811
print("Hello GitHub Actions!")
912
self.next(self.end)
1013

0 commit comments

Comments
 (0)