From ea3d0ea9a49052c2085cd08de362f175f9893dc7 Mon Sep 17 00:00:00 2001 From: Cedric Zhuang Date: Wed, 12 Jul 2023 17:29:19 +0800 Subject: [PATCH] [GH-28] Correct syntax in README. The example in README does not properly set the property of process. Since we have support the process configuration, change the sample to align to the DSL syntax. --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index dace569..6014f70 100644 --- a/README.md +++ b/README.md @@ -129,10 +129,10 @@ Here is an example of a hello world workflow. ```groovy process sayHello { - executor = 'float' - image = 'cactus' - cpu = 2 - mem = 4 + executor 'float' + container 'cactus' + cpus 2 + memory '4 G' output: stdout