Skip to content

Commit

Permalink
grant permission to gradlew
Browse files Browse the repository at this point in the history
  • Loading branch information
Raynafs committed Jun 11, 2024
1 parent 9bb697e commit c6e1982
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/branch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,9 +95,14 @@ jobs:
subdirectory: fastlane
bundle-install-path: CACHE_BUNDLER


- name: Ensure android directory exists
run: mkdir -p android

- name: Grant execute permission for gradlew
run: chmod +x gradlew
working-directory: android

- name: Run local tests for the combined coverage report (only API 30)
if: matrix.api-level == 30
run: ./gradlew testDebugUnitTest
Expand All @@ -120,7 +125,7 @@ jobs:
force-avd-creation: true
emulator-options: -no-snapshot-save -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none
disable-animations: true
script: ./gradlew datasource:remote:clean datasource:remote:createDebugCombinedCoverageReport --stacktrace
script: ./gradlew :datasource:remote:clean :datasource:remote:createDebugCombinedCoverageReport --stacktrace

- name: Upload DataSource module test coverage report to Codecov
if: matrix.api-level == 30 # Only upload coverage on API level 30
Expand Down

0 comments on commit c6e1982

Please sign in to comment.