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.
2 parents d8b735f + 2e1232c commit 57d98ccCopy full SHA for 57d98cc
.github/workflows/Build.yaml
@@ -160,6 +160,12 @@ jobs:
160
name: lint-reports
161
path: '**/build/reports/lint-results-*.html'
162
163
+ - name: Upload lint reports (SARIF)
164
+ if: always()
165
+ uses: github/codeql-action/upload-sarif@v3
166
+ with:
167
+ sarif_file: './'
168
+
169
- name: Check badging
170
run: ./gradlew :app:checkProdReleaseBadging
171
build-logic/convention/src/main/kotlin/AndroidLintConventionPlugin.kt
@@ -42,5 +42,6 @@ class AndroidLintConventionPlugin : Plugin<Project> {
42
43
private fun Lint.configure() {
44
xmlReport = true
45
+ sarifReport = true
46
checkDependencies = true
47
}
0 commit comments