Remove external components #3
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 | |
tags: | |
- '*alpha*' | |
- '*beta*' | |
- '*rc*' | |
# jobs are run in parallel on different machines | |
# all steps run in series | |
jobs: | |
test: | |
name: Test App | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set up JDK | |
uses: actions/setup-java@v3 | |
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@v3 | |
if: always() | |
with: | |
name: test-reports | |
path: app/build/reports | |
- name: Upload APK | |
uses: actions/upload-artifact@v3 | |
with: | |
path: app/build/outputs/apk/debug/app-debug.apk |