Pagination fixes #90
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: Tests | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 1.17 | |
- name: Setup Android SDK Tools | |
uses: android-actions/setup-android@v2 | |
- name: Unit Test | |
run: ./gradlew testDebugUnitTest | |
continue-on-error: true # IMPORTANT: allow pipeline to continue to Android Test Report step | |
- name: Android Test Report | |
uses: asadmansr/[email protected] |