github.com/upcmd/up@v0.8.1-0.20230108151705-ad8b797bf04f/tests/modtests/0008/.upmodules/hello@25456bbcd17db524d1148e42bdcc3bb36ce90042/up.yml (about) 1 2 tasks: 3 4 - 5 name: Main 6 desc: main entry 7 task: 8 - 9 func: shell 10 desc: main job 11 do: 12 - echo "hello " 13 14 - 15 func: call 16 do: Say_world 17 18 19 - 20 name: Say_world 21 task: 22 - 23 func: cmd 24 do: 25 - 26 name: print 27 cmd: " .... world from Say_world" 28 29 - 30 name: Say_hello 31 task: 32 - 33 func: cmd 34 do: 35 - 36 name: print 37 cmd: " .... hello from Say_hello"