Merge pull request #77 from PetJournal/refactor/change-to-the-new-bir… #19
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: PetJournalAndroid | |
on: | |
push: | |
branches: | |
- develop | |
jobs: | |
lint: | |
name: Static Code Analysis | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout the code | |
uses: actions/[email protected] | |
- name: Set up JDK 17 | |
uses: actions/[email protected] | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
cache: 'gradle' | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
working-directory: petJournal | |
- name: Run lint | |
run: ./gradlew lintDebug | |
working-directory: petJournal | |
- name: Upload lint report | |
uses: actions/upload-artifact@v4 | |
with: | |
name: lint-results-debug.html | |
path: petJournal/app/build/reports/lint-results-debug.html | |
unit-test: | |
name: Unit Tests | |
runs-on: ubuntu-latest | |
needs: lint | |
steps: | |
- name: Checkout the code | |
uses: actions/[email protected] | |
- name: Set up JDK 17 | |
uses: actions/[email protected] | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
cache: 'gradle' | |
- name: Setup Android SDK | |
uses: android-actions/setup-android@v3 | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
working-directory: petJournal | |
- name: Cache Gradle dependencies | |
uses: actions/cache@v4 | |
with: | |
path: ~/.gradle | |
key: ${{ runner.os }}-gradle-${{ hashFiles('petJournal/**/*') }} | |
restore-keys: | | |
${{ runner.os }}-gradle- | |
env: | |
JAVA_HOME: /opt/hostedtoolcache/Java_1.8.0 | |
- name: Run unit tests | |
run: ./gradlew test | |
working-directory: petJournal | |
- name: Upload unit tests report | |
uses: actions/upload-artifact@v4 | |
with: | |
name: unit_test_report | |
path: petJournal/app/build/reports/tests/testDebugUnitTest/ | |
# package: | |
# name: Generate Android App Bundle | |
# runs-on: ubuntu-latest | |
# needs: unit-test | |
# steps: | |
# - name: Checkout the code | |
# uses: actions/[email protected] | |
# | |
# - name: Set up JDK 17 | |
# uses: actions/[email protected] | |
# with: | |
# java-version: '17' | |
# distribution: 'temurin' | |
# cache: 'gradle' | |
# | |
# - name: Grant execute permission for gradlew | |
# run: chmod +x gradlew | |
# working-directory: petJournal | |
# | |
# - name: Build Android App Bundle | |
# run: ./gradlew bundle | |
# working-directory: petJournal | |
# | |
# - name: Upload Android App Bundle | |
# uses: actions/upload-artifact@v4 | |
# with: | |
# name: app-release.aab | |
# path: petJournal/app/build/outputs/bundle/release/app-release.aab |