Skip to content

Commit c6f0166

Browse files
committed
TEST: reactivecircus
1 parent 15c3aa4 commit c6f0166

File tree

1 file changed

+12
-6
lines changed

1 file changed

+12
-6
lines changed

.github/workflows/dev-test.yml

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,17 @@ jobs:
143143
echo "any_changed=false" >> $GITHUB_ENV
144144
fi
145145
146+
- name: Setup JDK
147+
if: env.any_changed == 'true'
148+
uses: actions/setup-java@v4
149+
with:
150+
distribution: 'corretto'
151+
java-version: '17'
152+
153+
- name: Grant execute permission for gradlew
154+
if: env.any_changed == 'true'
155+
run: chmod +x gradlew
156+
146157
- name: Run Instrumentation Tests on Emulator
147158
if: env.any_changed == 'true'
148159
uses: reactivecircus/android-emulator-runner@v2
@@ -154,12 +165,7 @@ jobs:
154165
script: ./gradlew connectedCheck --stacktrace
155166
run: ./gradlew connectedAndroidTest
156167
#
157-
# - name: Setup JDK
158-
# if: env.any_changed == 'true'
159-
# uses: actions/setup-java@v4
160-
# with:
161-
# distribution: 'corretto'
162-
# java-version: '17'
168+
163169
#
164170
# - name: Setup Android SDK
165171
# if: env.any_changed == 'true'

0 commit comments

Comments
 (0)