We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7042fae commit baceaa9Copy full SHA for baceaa9
.github/workflows/assemble.yml
@@ -32,9 +32,21 @@ jobs:
32
- name: Assemble release
33
run: ./gradlew assembleRelease
34
35
+ - name: Run lint for release
36
+ run: ./gradlew lintRelease
37
+
38
- name: Assemble debug
39
run: ./gradlew assembleDebug
40
41
+ - name: Run lint for debug
42
+ run: ./gradlew lintDebug
43
44
+ - name: Upload lint results
45
+ uses: actions/upload-artifact@v2
46
+ with:
47
+ name: lint-results
48
+ path: app/build/reports/lint-results-*.*
49
50
- name: Cleanup Gradle Cache
51
# Remove some files from the Gradle cache, so they aren't cached by GitHub Actions.
52
# Restoring these files from a GitHub Actions cache might cause problems for future builds.
0 commit comments