@@ -201,14 +201,14 @@ jobs:
201
201
heap-size : 600M
202
202
script : ./gradlew connectedDemoDebugAndroidTest --daemon
203
203
204
- - name : Run local tests (including Roborazzi) for the combined coverage report (only API 30 )
205
- if : matrix.api-level == 30
204
+ - name : Run local tests (including Roborazzi) for the combined coverage report (only API 34 )
205
+ if : matrix.api-level == 34
206
206
# There is no need to verify Roborazzi tests to generate coverage.
207
207
run : ./gradlew testDemoDebugUnitTest -Proborazzi.test.verify=false # Add Prod if we ever add JVM tests for prod
208
208
209
209
# Add `createProdDebugUnitTestCoverageReport` if we ever add JVM tests for prod
210
- - name : Generate coverage reports for Debug variants (only API 30 )
211
- if : matrix.api-level == 30
210
+ - name : Generate coverage reports for Debug variants (only API 34 )
211
+ if : matrix.api-level == 34
212
212
run : ./gradlew createDemoDebugCombinedCoverageReport
213
213
214
214
- name : Upload test reports
@@ -218,8 +218,8 @@ jobs:
218
218
name : test-reports-${{ matrix.api-level }}
219
219
path : ' **/build/reports/androidTests'
220
220
221
- - name : Display local test coverage (only API 30 )
222
- if : matrix.api-level == 30
221
+ - name : Display local test coverage (only API 34 )
222
+ if : matrix.api-level == 34
223
223
id : jacoco
224
224
225
225
with :
@@ -230,8 +230,8 @@ jobs:
230
230
${{ github.workspace }}/**/build/reports/jacoco/**/*Report.xml
231
231
token : ${{ secrets.GITHUB_TOKEN }}
232
232
233
- - name : Upload local coverage reports (XML + HTML) (only API 30 )
234
- if : matrix.api-level == 30
233
+ - name : Upload local coverage reports (XML + HTML) (only API 34 )
234
+ if : matrix.api-level == 34
235
235
uses : actions/upload-artifact@v4
236
236
with :
237
237
name : coverage-reports
0 commit comments