mirror of
https://github.com/git/git
synced 2024-11-05 18:59:29 +00:00
676eb0c1ce
With this patch, test failures will be annotated with a helpful, clickable message in GitHub Actions. For details, see https://github.com/actions/toolkit/blob/master/docs/problem-matchers.md Note: we need to set `TEST_SHELL_PATH` to Bash so that the problem matcher is fed a file and line number for each test failure. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de> Signed-off-by: Đoàn Trần Công Danh <congdanhqx@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
16 lines
385 B
JSON
16 lines
385 B
JSON
{
|
|
"problemMatcher": [
|
|
{
|
|
"owner": "git-test-suite",
|
|
"pattern": [
|
|
{
|
|
"regexp": "^([^ :]+\\.sh):(\\d+): (error|warning|info):\\s+(.*)$",
|
|
"file": 1,
|
|
"line": 2,
|
|
"severity": 3,
|
|
"message": 4
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}
|