Milestone 130 - choose point with best accuracy, faster custom url autosend #981
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 CI | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v1 | |
- name: Set up Java 11 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: '11' | |
- name: Build with Gradle | |
run: ./gradlew assembleDebugUnitTest -Dpre-dex=false | |
- name: Run Unit Tests | |
run: ./gradlew testDebugUnitTest -Dpre-dex=false -q |