mirror of
https://github.com/actions/setup-go.git
synced 2025-04-05 03:16:34 +08:00
Merge 4dedda9ac2dd3fc90606b8d5283420b5ef54218e into 0aaccfd150d50ccaeb58ebd88d36e91967a5f35b
This commit is contained in:
commit
6075e4d79e
@ -665,6 +665,16 @@ describe('setup-go', () => {
|
||||
expect(annotation.message).toBe('undefined: fmt.Printl');
|
||||
});
|
||||
|
||||
it('matches test output without a column', async () => {
|
||||
const line = '/path/to/main_test.go:13: expected true but got false';
|
||||
const annotation = testMatch(line);
|
||||
expect(annotation).toBeDefined();
|
||||
expect(annotation.line).toBe(13);
|
||||
expect(annotation.column).toBe(NaN);
|
||||
expect(annotation.file).toBe('/path/to/main_test.go');
|
||||
expect(annotation.message).toBe('expected true but got false');
|
||||
});
|
||||
|
||||
// 1.13.1 => 1.13.1
|
||||
// 1.13 => 1.13.0
|
||||
// 1.10beta1 => 1.10.0-beta.1, 1.10rc1 => 1.10.0-rc.1
|
||||
|
@ -4,7 +4,7 @@
|
||||
"owner": "go",
|
||||
"pattern": [
|
||||
{
|
||||
"regexp": "^\\s*(.+\\.go):(?:(\\d+):(\\d+):)? (.*)",
|
||||
"regexp": "^\\s*(.+\\.go):(?:(\\d+):(?:(\\d+):)?)? (.*)",
|
||||
"file": 1,
|
||||
"line": 2,
|
||||
"column": 3,
|
||||
|
Loading…
x
Reference in New Issue
Block a user