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-error-matcher.json vendored Normal file
View File

@@ -0,0 +1,19 @@
{
// Example:
// e: /path/to/file/KotlinFile.kt: (14, 5): Val cannot be reassigned
"problemMatcher": [
{
"owner": "kotlin-error",
"pattern": [
{
"regexp": "^e:\\s+(\\S+):\\s+\\((\\d+),\\s+(\\d+)\\):\\s+(.+)$",
"file": 1,
"line": 2,
"column": 3,
"message": 4
}
],
"severity": "error"
}
]
}