[UNTESTED] Support a lack of MANAGE_DOCUMENTS permission #788
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: Build | |
on: [push, pull_request] | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Gradle dependency cache | |
uses: actions/cache@v2 | |
with: | |
path: | | |
~/.gradle/caches | |
~/.gradle/wrapper | |
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }} | |
restore-keys: ${{ runner.os }}-gradle- | |
- name: Android build cache | |
uses: actions/cache@v2 | |
with: | |
path: | | |
~/.android/build-cache | |
key: ${{ runner.os }}-android | |
restore-keys: ${{ runner.os }}-android | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 11 | |
- name: Build | |
run: ./gradlew compileDebugAndroidTestSources check assemble ktlintCheck |