about summary refs log tree commit diff
path: root/test-data/workflow-with-default-inputs.cwl
blob: abc88172297323bba1bad709666f797296c3ee1b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
class: Workflow
inputs:
  number:
    type: int
    default: 13
  flag:
    type: boolean
    default: true
  reverseflag:
    type: boolean
    default: false
  foo:
    type: string
    default: bar
  arr:
    type:
      type: array
      items: int
    default:
      - 1
      - 2
      - 3
outputs: []