Skip to content

[Capture location] Prompt for location permissions when capture location task is opened #700

[Capture location] Prompt for location permissions when capture location task is opened

[Capture location] Prompt for location permissions when capture location task is opened #700

Workflow file for this run

# Copyright 2024 The Ground Authors.
#
# 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
#
# https://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: End to End Test
on:
issue_comment:
types: [created]
jobs:
e2eTest:
runs-on: ubuntu-latest
timeout-minutes: 15
if: github.event.issue.pull_request && contains(github.event.comment.body, '/e2eTest')
steps:
- name: Start test
run: |
echo "Begin end to end test"
createTest:
needs: e2eTest
name: Create a new survey
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Run create-test
uses: google/ground-platform/.github/actions/create-test@master
with:
upload-artifacts: true
submitTest:
needs: createTest
name: Submit to survey
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- name: Run submit-test
uses: ./.github/actions/submit-test
with:
android-repository: ${{ github.repository }}
google-maps-key: ${{ secrets.GOOGLE_MAPS_KEY }}
use-repo-data: false
upload-artifacts: true
verifyTest:
needs: submitTest
name: Verify survey submissions
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Run verify-test
uses: google/ground-platform/.github/actions/verify-test@master
with:
use-repo-data: false