Skip to content

Merge branch 'dominguez' into dominguez_debug #1

Merge branch 'dominguez' into dominguez_debug

Merge branch 'dominguez' into dominguez_debug #1

name: Test App
on:
push:
branches:
- dominguez_debug
tags:
- '*alpha*'
- '*beta*'
- '*rc*'
# jobs are run in parallel on different machines
# all steps run in series
jobs:
test:
name: Debug App
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup build tool version variable
shell: bash
run: |
BUILD_TOOL_VERSION=$(ls /usr/local/lib/android/sdk/build-tools/ | tail -n 1)
echo "BUILD_TOOL_VERSION=$BUILD_TOOL_VERSION" >> $GITHUB_ENV
echo Last build tool version is: $BUILD_TOOL_VERSION
- name: Set up JDK
uses: actions/setup-java@v4
with:
distribution: 'temurin' #Eclipse
java-version: '17'
- name: Make gradlew executable
run: chmod +x ./gradlew
- name: Run Linters and Test
run: ./gradlew check
- name: Build Debug APK
run: ./gradlew assembleDebug --stacktrace
#path app/build/outputs/apk/debug/app-debug.apk
- name: Upload Reports
uses: actions/upload-artifact@v4
if: always()
with:
name: test-reports
path: app/build/reports
- name: Upload APK
uses: actions/upload-artifact@v4
with:
path: app/build/outputs/apk/debug/app-debug.apk