Merge pull request #84 from decnorton/develop

Add problem matcher for PHPUnit
This commit is contained in:
Shivam Mathur
2019-12-19 02:18:02 +05:30
committed by GitHub
4 changed files with 69 additions and 0 deletions

24
.github/matchers/phpunit.json vendored Normal file
View File

@ -0,0 +1,24 @@
{
"problemMatcher": [
{
"owner": "phpunit",
"pattern": [
{
"regexp": "^\\d+\\)\\s.*$"
},
{
"regexp": "^(.*)$",
"message": 1
},
{
"regexp": "^\\s*$"
},
{
"regexp": "^(.*):(\\d+)$",
"file": 1,
"line": 2
}
]
}
]
}