Skip to content

Bump the gradle-dependencies group across 1 directory with 6 updates #137

Bump the gradle-dependencies group across 1 directory with 6 updates

Bump the gradle-dependencies group across 1 directory with 6 updates #137

Workflow file for this run

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