diff options
| -rw-r--r-- | .github/workflows/android-app.yml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/.github/workflows/android-app.yml b/.github/workflows/android-app.yml index f800fbe138..19f69c5fae 100644 --- a/.github/workflows/android-app.yml +++ b/.github/workflows/android-app.yml @@ -115,6 +115,17 @@ jobs: build-root-directory: android execution-only-caches: true + # Running the AGP lint here rather than in the separate lint workflow (android-ktlint.yml) + # since it's easier to make use of the running container, cache and previously ran tasks. + - name: Run AGP lint + uses: burrunan/gradle-cache-action@v1 + with: + job-id: jdk11 + arguments: lint + gradle-version: wrapper + build-root-directory: android + execution-only-caches: true + - name: Assemble instrumented test apk (app) uses: burrunan/gradle-cache-action@v1 with: |
