Release 6.14.0 (#94) #66
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI - Tests | |
on: | |
push: | |
branches-ignore: | |
- 'master' | |
- 'releases/**' | |
workflow_call: | |
jobs: | |
Tests: | |
runs-on: | |
- self-hosted | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK | |
uses: actions/setup-java@v1 | |
with: | |
java-version: '11' | |
- name: Setup Android SDK | |
uses: android-actions/setup-android@v2 | |
- name: Make gradlew executable | |
run: chmod +x ./gradlew | |
- name: Run Tests | |
run: ./gradlew test | |
- name: Test Report | |
uses: dorny/test-reporter@v1 | |
if: always() | |
with: | |
name: Test Results | |
path: app/build/test-results/testDebugUnitTest/TEST-*.xml # Path to test results | |
reporter: java-junit # Format of test results | |
fail-on-error: true |