wdl-analysis 0.24.0

Analysis of Workflow Description Language (WDL) documents.
Documentation
# This is a test of too many input sections in a task and workflow.

version 1.1

task t {
    input {}

    input {}

    command <<<>>>
}

# A duplicate task should trigger a single error and then be ignored.
task t {
    input {}

    input {}

    command <<<>>>
}

workflow w {
    input {}

    input {}
}