wdl-analysis 0.24.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
error: type mismatch: expected type `String` or type `Array[String]`, but found type `Boolean`
   ┌─ tests/analysis/runtime-section-v1-0/source.wdl:29:17
   │
29 │         docker: false
   │         ------  ^^^^^ this is type `Boolean`
   │         │        
   │         this expects type `String` or type `Array[String]`

error: type mismatch: expected type `Int` or type `String`, but found type `Boolean`
   ┌─ tests/analysis/runtime-section-v1-0/source.wdl:30:17
   │
30 │         memory: false
   │         ------  ^^^^^ this is type `Boolean`
   │         │        
   │         this expects type `Int` or type `String`