Skip to content

Commit

Permalink
chore: added Lint report (#282)
Browse files Browse the repository at this point in the history
  • Loading branch information
kikoso authored Oct 28, 2024
1 parent bb723fb commit b29c0b0
Show file tree
Hide file tree
Showing 4 changed files with 61 additions and 0 deletions.
49 changes: 49 additions & 0 deletions .github/lint-report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
# Copyright 2024 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

name: Lint and Upload SARIF

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
lint:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Set up JDK 17
uses: actions/setup-java@v3
with:
distribution: 'adopt'
java-version: '17'

- name: Run Android Lint
run: ./gradlew lint

- name: Merge SARIF files
run: |
jq -s '{ "$schema": "https://json.schemastore.org/sarif-2.1.0", "version": "2.1.0", "runs": map(.runs) | add }' maps-ktx/build/reports/lint-results.sarif maps-utils-ktx/build/reports/lint-results.sarif app/build/reports/lint-results.sarif > merged.sarif
- name: Upload SARIF file
uses: github/codeql-action/upload-sarif@v3
with:
sarif_file: merged.sarif
4 changes: 4 additions & 0 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@ plugins {
}

android {
lint {
sarifOutput = file("$buildDir/reports/lint-results.sarif")
}

compileSdk libs.versions.androidCompileSdk.get().toInteger()

defaultConfig {
Expand Down
4 changes: 4 additions & 0 deletions maps-ktx/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@ apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'

android {
lint {
sarifOutput = file("$buildDir/reports/lint-results.sarif")
}

compileSdk libs.versions.androidCompileSdk.get().toInteger()

defaultConfig {
Expand Down
4 changes: 4 additions & 0 deletions maps-utils-ktx/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'

android {
lint {
sarifOutput = file("$buildDir/reports/lint-results.sarif")
}

compileSdk libs.versions.androidCompileSdk.get().toInteger()

defaultConfig {
Expand Down

0 comments on commit b29c0b0

Please sign in to comment.