Fix generation of POM file #19
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
name: Android Tests | |
on: | |
push: | |
branches: [ "master" ] | |
paths-ignore: | |
- 'README.md' | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
tests: | |
runs-on: macos-latest | |
steps: | |
- name: Repository checkout | |
uses: actions/checkout@v3 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 17 | |
- name: Run Tests | |
uses: reactivecircus/android-emulator-runner@v2 | |
with: | |
api-level: 23 | |
target: google_apis | |
arch: x86_64 | |
script: ./gradlew connectedCheck |