[HOTFIX] added handling of SPOS app not being present #45
Workflow file for this run
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: Android CI - PR checks | |
on: | |
pull_request | |
jobs: | |
basic-tests: | |
name: Run code analysis and unit tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checking out branch | |
uses: actions/checkout@v4 | |
- name: set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
cache: gradle | |
- name: Setup Android SDK | |
uses: android-actions/setup-android@v3 | |
- name: Run Detekt Code Analysis | |
run: ./gradlew detekt | |
- name: Run Unit tests | |
run: ./gradlew testDebug |