Add type annotations (PEP 484) (#25)

This commit is contained in:
Sergey Petrov
2019-07-29 01:26:15 +03:00
committed by GitHub
parent be7438a653
commit fde28abb04
9 changed files with 151 additions and 76 deletions
+14
View File
@@ -14,6 +14,20 @@ local Pipeline(py_version) = {
};
[
{
kind: "pipeline",
name: "linting",
steps: [
{
name: "mypy",
image: "pr0ger/drone-pylinters",
pull: "always",
settings: {
linter: "mypy",
},
},
],
},
Pipeline("3.5"),
Pipeline("3.6"),
Pipeline("3.7"),