Skip to content

Commit

Permalink
feat: added lint report
Browse files Browse the repository at this point in the history
  • Loading branch information
kikoso committed Dec 2, 2024
1 parent 4d3ee50 commit 76512dd
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 1 deletion.
49 changes: 49 additions & 0 deletions .github/workflows/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/[email protected]
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
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ class PublishingConventionPlugin : Plugin<Project> {
}
pom {
name.set(project.name)
description.set("Jetpack Compose components for the Maps SDK for Android")
description.set("Kotlin extensions (KTX) for Google Maps SDK")
url.set("https://github.com/googlemaps/android-maps-ktx")
scm {
connection.set("scm:[email protected]:googlemaps/android-maps-ktx.git")
Expand Down

0 comments on commit 76512dd

Please sign in to comment.