Skip to content

Use cache from ExoPlayerConfig to create a new pool #81

Use cache from ExoPlayerConfig to create a new pool

Use cache from ExoPlayerConfig to create a new pool #81

Workflow file for this run

name: Pull Request Checker
on: pull_request
jobs:
unit-test:
name: Run test and check code change
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Gradle Wrapper Validation
uses: gradle/wrapper-validation-action@v1
- name: Set up JDK 11
uses: actions/setup-java@v1
with:
java-version: 11
- name: Generate cache key
run: ./checksum.sh checksum.txt
- uses: actions/cache@v2
with:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-${{ hashFiles('checksum.txt') }}
restore-keys: |
${{ runner.os }}-gradle-
- name: Run test and check code change
run: bash ./gradlew clean && ./gradlew test && ./gradlew check && ./gradlew assembleDebug --stacktrace