This commit addresses several documentation gaps to ensure all implemented
reporters are properly documented across action.yml and README.md.
Changes:
1. Updated action.yml description to include all supported languages:
- Added: Go, Python (pytest, unittest), Ruby (RSpec), Swift
2. Added Ruby/RSpec to supported languages list in README.md
3. Added detailed documentation sections in README.md:
- dotnet-nunit: Added section with NUnit3 XML format instructions
- rspec-json: Added section with RSpec JSON formatter configuration
All reporters now have:
- Entry in action.yml description
- Entry in README supported languages list
- Entry in README usage documentation (reporter input)
- Detailed documentation section in README "Supported formats"
- Implementation in src/main.ts
- Tests in __tests__/
This ensures users can discover and use all available reporters without
confusion about what is supported.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
Add python-xunit-parser.ts with associated case statement
Add python-xunit to reporter docs in action.yml
Add tests
Update README
Resolves#244Resolves#633
This action requires the checks: write permission so I've added an example in the readme to save people from digging around to find the right permission
updated Junit to lowercase junit.
If the reporter is used as "jest-Junit" in a linux build agent, the test runner throws a `module not found` error related to Junit.
Setting `--reporters=jest-junit` solves the problem.
The fast-glob library that is internally used interprets backslashes as escape characters. If enabled, all backslashes in provided path will be replaced by forward slashes and act as directory separators. It might be useful when path input variable is composed dynamically from existing directory paths on Windows.
Closes#127