Skip to content
You're viewing an older version of this GitHub Action. Do you want to see the latest version instead?
file-text

GitHub Action

Android Test Report Action

v1.0.1

Android Test Report Action

file-text

Android Test Report Action

GitHub Action that prints Android test reports

Installation

Copy and paste the following snippet into your .yml file.

              

- name: Android Test Report Action

uses: asadmansr/[email protected]

Learn more about this action in asadmansr/android-test-report-action

Choose a version

Android Test Report Action

GitHub Action that prints Android test xml reports.

Usage

The Android Test Report action parses the xml reports produced by the tests and outputs data for all test suites.

name: Android CI
on: [push]

jobs:
  # Execute unit testing command
  test:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v1

    - name: set up JDK 1.8
      uses: actions/setup-java@v1
      with:
        java-version: 1.8

    - name: Unit Test
      run: ./gradlew testDebugUnitTest
      continue-on-error: true # Allow steps to continue even with test failures

    - name: Report
      uses: asadmansr/android-test-report-action@master

Output

action