Merge branch 'dominguez' into dominguez_debug #1
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: 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 |