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 851ca63 commit 3797ea4Copy full SHA for 3797ea4
.github/workflows/Build.yaml
@@ -125,6 +125,12 @@ jobs:
125
name: lint-reports
126
path: '**/build/reports/lint-results-*.html'
127
128
+ - name: Upload lint reports (SARIF)
129
+ if: always()
130
+ uses: github/codeql-action/upload-sarif@v2
131
+ with:
132
+ sarif_file: './'
133
+
134
androidTest:
135
needs: build
136
runs-on: macOS-latest # enables hardware acceleration in the virtual machine
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