We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent df522cb commit 6bb2984Copy full SHA for 6bb2984
1 file changed
.github/workflows/CI.yml
@@ -27,10 +27,17 @@ jobs:
27
- name: Grant execute permission for gradlew
28
run: chmod +x gradlew
29
30
- - name: Run unit test, lint check and build
31
- run: ./gradlew test lintDebug assembleDebug
+ - name: Setup Android emulator
+ uses: reactivecircus/android-emulator-runner@v2
32
+ with:
33
+ api-level: 33
34
+ script: |
35
+ echo "Emulator started!"
36
+
37
+ - name: Run tests, lint check and build
38
+ run: ./gradlew test connectedAndroidTest lintDebug assembleDebug
39
- - name: Upload Lint Report Artifact
40
+ - name: Upload lint report artifact
41
if: always()
42
uses: actions/upload-artifact@v4
43
with:
0 commit comments