Get automated test results as GitHub Pull Request Checks with action-junit-report.
Automations like generating test results within GitHub for your software projects.
This saves time by automating the process of testing and reporting issues, making it easier to identify and fix problems.
"A founder of a small startup wants to automate their test reporting for a new app. They set up action-junit-report in their GitHub workflow to receive automated PR checks with test results. As the app is deployed, they get instant feedback on any issues."
Beginners should pick this up when setting up their first GitHub project.
Senior engineers and project managers will reach for this when implementing automated testing and reporting for multiple projects.
Don't confuse this skill with other automated testing tools; action-junit-report specifically reports JUnit test results in GitHub PR checks.
Automates the reporting of JUnit test results as a check on GitHub Pull Requests, providing a clear overview of test success or failure
name: JUnit Report
on: [push]
jobs:
report:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Run JUnit tests
run: ./gradlew test
- name: Report JUnit results
uses: mikepenz/action-junit-report@v2Read the entire source before you build — unlike paid marketplaces that hide it behind a buy button.
Are you the creator of this tool? Claim your listing → and earn 85% of every sale.
More automation tools founders pair with this one.