From 8fd5fc58ca0940c9ebbf6255826d611e39e830f1 Mon Sep 17 00:00:00 2001 From: Jozef Izso Date: Sat, 22 Nov 2025 17:47:11 +0100 Subject: [PATCH] Add missing golang-json reporter to action.yml MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The golang-json reporter has been fully implemented since earlier versions but was missing from the action.yml documentation. This made it undiscoverable for users looking for Go test support. Changes: - Added golang-json to the list of supported reporters in action.yml This aligns the action.yml with: - The actual implementation in src/main.ts (lines 264-265) - The README.md documentation (line 145) - The existing parser and tests Fixes #689 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- action.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/action.yml b/action.yml index fab75d5..9b20aff 100644 --- a/action.yml +++ b/action.yml @@ -29,6 +29,7 @@ inputs: - dotnet-nunit - dotnet-trx - flutter-json + - golang-json - java-junit - jest-junit - mocha-json