mirror of
https://gitea.com/actions/setup-android.git
synced 2025-12-26 03:49:28 +08:00
Initial version of job
This commit is contained in:
19
.github/kotlin-error-matcher.json
vendored
Normal file
19
.github/kotlin-error-matcher.json
vendored
Normal 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"
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user