Skip to content

feat: add steady wait example #36

feat: add steady wait example

feat: add steady wait example #36

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: Merge SARIF files
run: |
jq -s '{
"$schema": "https://json.schemastore.org/sarif-2.1.0",
"version": "2.1.0",
"runs": map(.runs) | add
}' \
Maps3DSamples/ApiDemos/common/build/reports/lint-results-debug.sarif \
Maps3DSamples/ApiDemos/kotlin-app/build/reports/lint-results-debug.sarif \
Maps3DSamples/advanced/app/build/reports/lint-results-debug.sarif \
> merged.sarif
- name: Upload SARIF file
uses: github/codeql-action/upload-sarif@v3
with:
sarif_file: merged.sarif