action
action copied to clipboard
Show a helpful summary of test results in GitHub Actions CI/CD workflow runs
Bazel generates JUnit-like output, but it uses the `error` key instead of `failure`. It also does some other silly things with test aggregation, but I didn't dive into that with...
I have a .NET framework project with unit tests running with NUnit. It generates a test result file as `NUnitResults.xml`. In my GitHub workflow file I have a step for...
[SpotBugs](https://spotbugs.github.io) can output it's results as XML that could be used for a report. The file looks something like this: ``` /*path*/App.class /*path*/ExceptionHandler.class /*path*/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-configuration-processor/2.7.2/12575686ba3820571ea79bfd08d6d27534b97a0e/spring-boot-configuration-processor-2.7.2.jar /*path*/.gradle/caches/modules-2/files-2.1/com.github.spotbugs/spotbugs-annotations/4.7.1/50e29adaec8cf4299441a6786a909a0b105326ad/spotbugs-annotations-4.7.1.jar /*path*/src/main/resources /*path*/src/main/java Exception analyzing *class*...
Hi @ethomson. I'm Dario, a developer at [BuildNN](https://github.com/buildnn/). Firstly, I want to thank you for the great work you did, I use your action basically everyday and It works really...
Markdown file content: ```md # detekt ## Metrics * 128 number of properties * 70 number of functions ... ```
Test case failures are correctly listed, however errors are ignored (summary is green despite errors). I suppose one way of (quick) fixing this would be by adding the errors to...
My build runs ~9M tests per matrix item, which results in very large junit test results. When [experimenting](https://github.com/ben-manes/caffeine/runs/6463233249?check_suite_focus=true), this action failed due heap exhaustion. I am currently using [publish-unit-test-result-action](https://github.com/EnricoMi/publish-unit-test-result-action) which...
The action will currently fail if a file specified in the ``paths`` property does not exist. I would have expected it to provide a warning in this instance, but not...
It is valuable to immediately see in the summary a list of the tests that passed/failed and individual timing for each Inspiration 😛 
Even with the sample of dotnet with JUnit package, add support for the native TRX parser output.