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

23
.github/gradle-matcher.json vendored Normal file
View File

@@ -0,0 +1,23 @@
{
// Example:
// warning unused-exclude-by-conf the exclude dependency is not in your dependency graph, so has no effect
// app/build.gradle:45
"problemMatcher": [
{
"owner": "gradle",
"pattern": [
{
"regexp": "^(error|quiet|warning|lifecycle|info|debug)\\s+(\\S+)\\s+(.+)$",
"severity": 1,
"code": 2,
"message": 3
},
{
"regexp": "^([^\\s]+):([\\d]+)$",
"file": 1,
"line": 2
}
]
}
]
}