Skip to content

Bump the androidx group across 1 directory with 6 updates #21

Bump the androidx group across 1 directory with 6 updates

Bump the androidx group across 1 directory with 6 updates #21

Workflow file for this run

name: Build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
cache: gradle
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Run unit tests
run: ./gradlew test --no-daemon
- name: Build debug APK
run: ./gradlew assembleDebug --no-daemon
- name: Upload APK artifact
uses: actions/upload-artifact@v4
with:
name: PopItBubble-debug
path: app/build/outputs/apk/debug/app-debug.apk
retention-days: 30
- name: Run lint
run: ./gradlew lintDebug --no-daemon
- name: Upload lint report
if: always()
uses: actions/upload-artifact@v4
with:
name: lint-report
path: app/build/reports/lint-results-debug.html
retention-days: 14