Initial version of job

This commit is contained in:
Jonas Bengtsson
2020-01-03 11:37:01 +01:00
commit 39774526ec
10 changed files with 137 additions and 0 deletions

19
.github/kotlin-warning-matcher.json vendored Normal file
View File

@@ -0,0 +1,19 @@
{
// Example:
// w: /path/to/file/KotlinFile.kt: (14, 5): Parameter 'foo' is never used
"problemMatcher": [
{
"owner": "kotlin-warning",
"pattern": [
{
"regexp": "^w:\\s+(\\S+):\\s+\\((\\d+),\\s+(\\d+)\\):\\s+(.+)$",
"file": 1,
"line": 2,
"column": 3,
"message": 4
}
],
"severity": "warning"
}
]
}