.github/workflows/build.yml #9
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
on: | |
workflow_dispatch: | |
jobs: | |
unit_test_and_apk: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
timeout-minutes: 90 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Validate Gradle Wrapper | |
uses: gradle/wrapper-validation-action@v2 | |
- name: Copy CI gradle.properties | |
run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties | |
- name: Decode google-services.json | |
run: echo "${{ secrets.GOOGLE_SERVICES_JSON }}" | base64 -d > ./app/google-services.json | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'zulu' | |
java-version: 17 | |
- name: Setup Android SDK | |
uses: android-actions/setup-android@v3 | |
- name: Setup Gradle | |
uses: gradle/gradle-build-action@v2 | |
- name: Set gradlew executable | |
run: chmod +x ./gradlew | |
- name: Create local.properties and add API Keys | |
run: | | |
echo "MAPS_API_KEY=${{ secrets.MAPS_API_KEY }}" >> local.properties | |
echo "OPENAI_API_KEY=${{ secrets.OPENAI_API_KEY }}" >> local.properties | |
echo "PALM_API_KEY=${{ secrets.PALM_API_KEY }}" >> local.properties | |
echo "WEB_CLIENT_ID=${{ secrets.WEB_CLIENT_ID }}" >> local.properties | |
echo "UNSPLASH_BASE_URL=${{ secrets.UNSPLASH_BASE_URL }}" >> local.properties | |
- name: Check build-logic | |
run: ./gradlew check -p build-logic | |
- name: Run Unit Tests | |
run: ./gradlew test | |
- name: Build Debug APK | |
run: ./gradlew assembleDebug | |
- name: Upload APK | |
uses: actions/upload-artifact@v4 | |
with: | |
name: app-debug-apk | |
path: app/build/outputs/apk/debug/app-debug.apk | |
- name: Upload test reports | |
if: always() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: test-reports-${{ matrix.api-level }} | |
path: '**/build/reports/androidTests' |