We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4335a9d commit f960378Copy full SHA for f960378
.github/workflows/lint.yml
@@ -47,6 +47,10 @@ jobs:
47
commands: |
48
echo "::add-matcher::.github/workflows/matchers/pylint.json"
49
tox -e lint
50
+ - name: "mypy"
51
+ commands: |
52
+ echo "::add-matcher::.github/workflows/matchers/mypy.json"
53
+ tox -e mypy
54
55
steps:
56
- name: "Harden Runner"
.github/workflows/matchers/mypy.json
@@ -0,0 +1,16 @@
1
+{
2
+ "problemMatcher": [
3
+ {
4
+ "owner": "mypy",
5
+ "pattern": [
6
7
+ "regexp": "^(.+):(\\d+):\\s(error|warning):\\s(.+)$",
8
+ "file": 1,
9
+ "line": 2,
10
+ "severity": 3,
11
+ "message": 4
12
+ }
13
+ ]
14
15
16
+}
0 commit comments