Skip to content

Bump androidGradle from 8.5.2 to 8.7.0 #52

Bump androidGradle from 8.5.2 to 8.7.0

Bump androidGradle from 8.5.2 to 8.7.0 #52

Workflow file for this run

name: Pull Request Check
on:
pull_request:
branches: [ "master" ]
paths-ignore:
- "**.md"
jobs:
check:
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: Load Google Services file
env:
DATA: ${{ secrets.HA1_GOOGLE_SERVICES_JSON_BASE64 }}
run: echo $DATA | base64 -di > app/google-services.json
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build
run: ./gradlew build