Uodate build_and_test.yml #15
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: Build and Test app module | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- app/** | |
workflow_dispatch: | |
jobs: | |
java_version: | |
name: Use Java | |
runs-on: ubuntu-latest | |
# Runs only when commit message startsWith 'Update' | |
# if: startsWith(github.event.head_commit.message, 'Update') | |
continue-on-error: true | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Java | |
uses: actions/[email protected] | |
with: | |
java-version: 17 | |
distribution: 'temurin' | |
# Print Hello, world! | |
- name: Run a one-line script | |
run: echo Hello, world! | |
# Print Java compiler version | |
- name: Print Java | |
run: javac -version | |
- name: Change wrapper permissions | |
run: chmod +x ./gradlew | |
- name: Run Debug Tests | |
run: ./gradlew :app:testDebugUnitTest | |
build_job: | |
name: Building the APK | |
runs-on: ubuntu-latest | |
continue-on-error: true | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Restore Cache | |
uses: actions/cache@v2 | |
with: | |
path: | | |
~/.gradle/caches | |
~/.gradle/wrapper | |
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }} | |
restore-keys: | | |
${{ runner.os }}-gradle- | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Java | |
uses: actions/[email protected] | |
with: | |
java-version: 17 | |
distribution: 'temurin' | |
- name: Change wrapper permissions | |
run: chmod +x ./gradlew | |
- name: Assemble Debug | |
run: ./gradlew :app:assembleDebug | |
- name: Upload APK | |
uses: actions/upload-artifact@v2 | |
with: | |
name: apk | |
path: app/build/outputs/apk/debug/**.apk |