Skip to content

chore(deps): bump org.jetbrains.kotlinx:kotlinx-coroutines-test from 1.6.0 to 1.7.1 in /app #30

chore(deps): bump org.jetbrains.kotlinx:kotlinx-coroutines-test from 1.6.0 to 1.7.1 in /app

chore(deps): bump org.jetbrains.kotlinx:kotlinx-coroutines-test from 1.6.0 to 1.7.1 in /app #30

# Copyright 2020 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.
# A workflow that runs tests on every new pull request
name: Run instrumentation tests
on:
repository_dispatch:
types: [test]
push:
branches-ignore: ['gh-pages']
pull_request:
branches-ignore: ['gh-pages']
workflow_dispatch:
jobs:
run-instrumentation-test:
runs-on: macOS-latest # enables hardware acceleration in the virtual machine
timeout-minutes: 30
steps:
- name: Checkout Repo
uses: actions/checkout@v2
- name: Gradle Wrapper Validation
uses: gradle/wrapper-validation-action@v1.0.4
- name: Set up JDK 11
uses: actions/setup-java@v2.3.1
with:
java-version: '11'
distribution: 'adopt'
- name: Inject Maps API Key
run: |
# Injecting the key directly into the manifest as secrets-gradle-plugin
# isn't picking up the key when creating a local.properties file here
sed -i -e "s,\${MAPS_API_KEY},$MAPS_API_KEY,g" ./app/src/main/AndroidManifest.xml
env:
MAPS_API_KEY: ${{ secrets.GMP_API_KEY }}
- name: Build debug
run: ./gradlew assembleDebug
- name: Run instrumentation tests
uses: reactivecircus/android-emulator-runner@v2
with:
api-level: 29
target: google_apis
arch: x86
disable-animations: true
script: ./gradlew :app:connectedCheck --stacktrace
- name: Upload test reports
if: always()
uses: actions/upload-artifact@v2
with:
name: test-reports
path: ./app/build/reports