0
1
Fork 0

Compare commits

...

4 Commits

Author SHA1 Message Date
WillAbides 2d591b9157
Merge 4dedda9ac2 into 99176a8f9a 2024-04-16 13:43:29 +08:00
Andy Brody 99176a8f9a
Update README.md with V5 release notes (#459) 2024-04-15 09:19:11 -05:00
Will Roden 4dedda9ac2 make column optional in matcher 2023-09-13 13:03:00 -05:00
Will Roden 643c7cb3e2 test for no-column match 2023-09-13 13:02:07 -05:00
3 changed files with 19 additions and 1 deletions

View File

@ -8,6 +8,14 @@ This action sets up a go environment for use in actions by:
- Optionally downloading and caching a version of Go by version and adding to `PATH`.
- Registering problem matchers for error output.
# V5
The V5 edition of the action offers:
- Upgraded Node.js runtime from node16 to node20
See full release notes on the [releases page](https://github.com/actions/setup-go/releases).
# V4
The V4 edition of the action offers:

View File

@ -645,6 +645,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

View File

@ -4,7 +4,7 @@
"owner": "go",
"pattern": [
{
"regexp": "^\\s*(.+\\.go):(?:(\\d+):(\\d+):)? (.*)",
"regexp": "^\\s*(.+\\.go):(?:(\\d+):(?:(\\d+):)?)? (.*)",
"file": 1,
"line": 2,
"column": 3,