Skip to content

fix: Relax secrets.properties enforcement for CI and Release builds #53

fix: Relax secrets.properties enforcement for CI and Release builds

fix: Relax secrets.properties enforcement for CI and Release builds #53

Workflow file for this run

# Copyright 2025 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:
pull_request:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@v3
with:
distribution: 'adopt'
java-version: '21'
- name: Run Android Lint (ApiDemos)
run: cd Maps3DSamples/ApiDemos && ./gradlew lint
- name: Run Android Lint (advanced)
run: cd Maps3DSamples/advanced && ./gradlew lint
- name: Upload SARIF (ApiDemos - Common)
uses: github/codeql-action/upload-sarif@v3
with:
sarif_file: Maps3DSamples/ApiDemos/common/build/reports/lint-results-debug.sarif
category: apidemos-common
- name: Upload SARIF (ApiDemos - Kotlin App)
uses: github/codeql-action/upload-sarif@v3
with:
sarif_file: Maps3DSamples/ApiDemos/kotlin-app/build/reports/lint-results-debug.sarif
category: apidemos-kotlinapp
- name: Upload SARIF (Advanced App)
uses: github/codeql-action/upload-sarif@v3
with:
sarif_file: Maps3DSamples/advanced/app/build/reports/lint-results-debug.sarif
category: advanced-app