feat: java docs #71
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
on: | |
push: | |
branches: | |
- release | |
pull_request: | |
types: | |
- opened | |
- reopened | |
- synchronize | |
jobs: | |
CI: | |
runs-on: macos-latest | |
strategy: | |
matrix: | |
api-level: | |
- 29 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: JDK 11 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '11' | |
distribution: temurin | |
- name: Gradle cache | |
uses: gradle/gradle-build-action@v2 | |
- name: Test | |
uses: reactivecircus/android-emulator-runner@v2 | |
with: | |
channel: canary | |
profile: "Nexus S" | |
api-level: '${{ matrix.api-level }}' | |
force-avd-creation: false | |
emulator-options: >- | |
-no-snapshot-save -no-window -gpu swiftshader_indirect -noaudio | |
-no-boot-anim -camera-back none | |
disable-animations: true | |
script: ./gradlew connectedCheck |