Bump com.android.tools.build:gradle from 8.7.2 to 8.7.3 #5074
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#https://github.com/marketplace/actions/android-emulator-runner | |
name: Test | |
on: | |
push: | |
pull_request: | |
jobs: | |
test: | |
timeout-minutes: 45 | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'adopt' | |
java-version: '17' | |
- name: Enable KVM | |
run: | | |
echo 'KERNEL=="kvm", GROUP="kvm", MODE="0666", OPTIONS+="static_node=kvm"' | sudo tee /etc/udev/rules.d/99-kvm4all.rules | |
sudo udevadm control --reload-rules | |
sudo udevadm trigger --name-match=kvm | |
- name: run tests | |
uses: reactivecircus/[email protected] | |
with: | |
arch: x86_64 | |
api-level: 34 | |
script: ./gradlew connectedCheck | |
- name: Archive | |
if: always() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: code-coverage-report | |
path: build/reports/androidTests/ | |
retention-days: 7 | |