We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This goes against the spec, which says implicit bindings are only allowed in >=v1.1.
Discovered in #244
Confirmed by this test:
$ cat tmp.wdl version 1.0 workflow test { input { String foo } call bar { input: foo } } task bar { input { String foo } command <<<>>> } $ sprocket check tmp.wdl warning[UnusedCall]: unused call `bar` ┌─ tmp.wdl:8:10 │ 8 │ call bar { input: foo } │ ^^^ warning[UnusedInput]: unused input `foo` ┌─ tmp.wdl:13:16 │ 13 │ String foo │ ^^^
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This goes against the spec, which says implicit bindings are only allowed in >=v1.1.
Discovered in #244
Confirmed by this test:
The text was updated successfully, but these errors were encountered: