Skip to content

spindance/android-test-report-action

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

Packages

No packages published

Languages

  • Python 44.9%
  • Dockerfile 43.7%
  • Shell 11.4%