Skip to content

ANDROID-16201 - Update API 34 and some components such AGP and Kotlin versions #37

ANDROID-16201 - Update API 34 and some components such AGP and Kotlin versions

ANDROID-16201 - Update API 34 and some components such AGP and Kotlin versions #37

Workflow file for this run

name: Tests
on: pull_request
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2.3.5
- name: Set up JDK 17
uses: actions/setup-java@v2
with:
distribution: 'temurin'
java-version: '17'
## Build all our Build Types at once ##
- name: Build all artifacts
id: buildAllApks
uses: eskatos/gradle-command-action@v1.3.3
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