Skip to content

build: bump com.google.code.gson:gson from 2.11.0 to 2.14.0 in /Rannah #18

build: bump com.google.code.gson:gson from 2.11.0 to 2.14.0 in /Rannah

build: bump com.google.code.gson:gson from 2.11.0 to 2.14.0 in /Rannah #18

Workflow file for this run

name: CI
on:
push:
branches: [master]
pull_request:
workflow_dispatch:
permissions:
contents: read
defaults:
run:
working-directory: Rannah
jobs:
build:
name: Unit tests, lint and debug build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- uses: actions/setup-java@v5
with:
distribution: temurin
java-version: 17
cache: gradle
- name: Unit tests
run: ./gradlew testDebugUnitTest --no-daemon
- name: Android Lint
run: ./gradlew lintDebug --no-daemon
- name: Debug build
run: ./gradlew assembleDebug --no-daemon
- name: Upload reports on failure
if: failure()
uses: actions/upload-artifact@v7
with:
name: reports
path: |
Rannah/app/build/reports/
retention-days: 7