We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 59b6e26 commit 96adc5dCopy full SHA for 96adc5d
1 file changed
.github/workflows/CI.yml
@@ -27,18 +27,12 @@ jobs:
27
- name: Grant execute permission for gradlew
28
run: chmod +x gradlew
29
30
- - name: Run Unit Tests
31
- run: ./gradlew test
32
-
33
- - name: Run lint checks
34
- run: ./gradlew lintDebug
+ - name: Run unit test, lint check and build
+ run: ./gradlew test lintDebug assembleDebug
35
36
- name: Upload Lint Report Artifact
37
if: always()
38
uses: actions/upload-artifact@v4
39
with:
40
name: lint-report
41
- path: app/build/reports/lint-results-debug.html
42
43
- - name: Build the project
44
- run: ./gradlew assembleDebug
+ path: app/build/reports/lint-results-debug.html
0 commit comments