Skip to content

When sending multiple points, do it in a single job #966

When sending multiple points, do it in a single job

When sending multiple points, do it in a single job #966

Workflow file for this run

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