ANDROID-13965 Prevent implementation from crashing in case ACTION_POINTER_UP is received with an invalid pointer. #30
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
name: Tests | |
on: pull_request | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v2 | |
with: | |
distribution: 'temurin' | |
java-version: '11' | |
## Build all our Build Types at once ## | |
- name: Build all artifacts | |
id: buildAllApks | |
uses: eskatos/[email protected] | |
with: | |
gradle-version: current | |
wrapper-cache-enabled: false | |
dependencies-cache-enabled: false | |
configuration-cache-enabled: false | |
arguments: assembleRelease | |
- name: Run checks | |
if: success() || failure() | |
run: ./gradlew check | |
- name: Run Detekt | |
if: success() || failure() | |
run: ./gradlew detekt |