Skip to content

[HOTFIX]fixed issue with amount, fixed issue with error not showing #12

[HOTFIX]fixed issue with amount, fixed issue with error not showing

[HOTFIX]fixed issue with amount, fixed issue with error not showing #12

Workflow file for this run

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