wdl-analysis 0.22.0

Analysis of Workflow Description Language (WDL) documents.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
error: task `t` contains a duplicate runtime section
  ┌─ tests/validation/duplicate-runtime/source.wdl:8:5
  │
6 │     runtime {}
  │     ------- first runtime section is defined here
7 │ 
8 │     runtime {}
  │     ^^^^^^^ this runtime section is a duplicate

error: conflicting task name `t`
   ┌─ tests/validation/duplicate-runtime/source.wdl:14:6
   │
 5 │ task t {
   │      - the task with the conflicting name is here
   ·
14 │ task t {
   │      ^ this task conflicts with a previously used name