about summary refs log tree commit diff
path: root/e2e-tests/tools/command-line-tool-step-with-optional-and-required-inputs.scm
blob: e6d0478d16a2fa9b41c4ccaf02070a2e0deb53d1 (plain)
1
2
3
4
5
6
7
8
(define echo
  (command #:inputs (message1 #:type string) (message2 #:type string
                                                       #:default "Hello world!")
           #:run "echo" message1 message2
           #:outputs (output_message #:type stdout)))

(workflow ((message #:type string))
  (echo #:message1 message))