Merge pull request #1165 from davotoula/1164-launch-in-scope-to-persi… #3569
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/Build Android | |
on: | |
pull_request: | |
branches: [main] | |
push: | |
branches: [main] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'zulu' | |
java-version: 17 | |
- name: Cache gradle | |
uses: actions/cache@v4 | |
with: | |
path: ~/.gradle/caches | |
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }} | |
restore-keys: | | |
${{ runner.os }}-gradle- | |
- name: Linter (gradle) | |
run: ./gradlew spotlessCheck | |
- name: Test (gradle) | |
run: ./gradlew test --no-daemon | |
- name: Android Test Report | |
uses: asadmansr/android-test-report-action@v1.2.0 | |
if: ${{ always() }} # IMPORTANT: run Android Test Report regardless | |
- name: Build APK (gradle) | |
run: ./gradlew assembleDebug --no-daemon | |
- name: Upload APK | |
uses: actions/upload-artifact@v4 | |
with: | |
name: Debug APK | |
path: amethyst/build/outputs/apk/debug/app-debug.apk | |
- name: Upload Test Results | |
uses: actions/upload-artifact@v4 | |
with: | |
name: Build Reports | |
path: amethyst/build/reports | |