1
0
Fork 0
mirror of https://code.forgejo.org/actions/setup-go synced 2025-07-05 15:56:00 +02:00

Add problem matcher

This commit is contained in:
Danny McCormick 2019-06-20 13:51:56 -04:00
parent 886b49b2b3
commit 5f2246e3c5
4 changed files with 28 additions and 7 deletions

16
.github/go.json vendored Normal file
View file

@ -0,0 +1,16 @@
{
"problemMatcher": [
{
"owner": "go",
"pattern": [
{
"regexp": "^([^:]*: )?((.:)?[^:]*):(\\d+)(:(\\d+))?: (.*)$",
"file": 2,
"line": 4,
"column": 6,
"message": 7
}
]
}
]
}