Update a package

Run tests in pipeline
This commit is contained in:
Geoffroy Bonneville
2025-11-08 14:45:32 -05:00
parent 92263bc4ec
commit 6df720fb8c
2 changed files with 4 additions and 1 deletions

View File

@@ -39,6 +39,9 @@ jobs:
restore-keys: | restore-keys: |
${{ runner.os }}-gradle- ${{ runner.os }}-gradle-
- name: Run unit tests
run: ./gradlew :${{ env.MODULE }}:testDebugUnitTest --stacktrace
- name: Build AAB - name: Build AAB
run: ./gradlew :${{ env.MODULE }}:bundleRelease run: ./gradlew :${{ env.MODULE }}:bundleRelease

View File

@@ -24,7 +24,7 @@ buildscript {
plugins { plugins {
id("com.google.devtools.ksp") version "2.0.21-1.0.27" apply false id("com.google.devtools.ksp") version "2.0.21-1.0.27" apply false
id("com.google.dagger.hilt.android") version "2.57.1" apply false id("com.google.dagger.hilt.android") version "2.57.2" apply false
} }
allprojects { allprojects {