Bump the gradle-dependencies group across 1 directory with 4 updates #155
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: Android CI | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: set up JDK | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '22' | |
distribution: 'temurin' | |
cache: gradle | |
- name: Setup Android SDK | |
uses: android-actions/setup-android@v3 | |
- name: Run android lint | |
run: ./gradlew lint | |
- name: Run ktlint | |
run: ./gradlew ktlintCheck | |
- name: Run detekt | |
run: ./gradlew detekt | |
- name: Run tests | |
run: ./gradlew test | |
- name: Build Debug | |
run: ./gradlew assembleDebug | |