Skip to content

Update to Kotlin 2.0.20 and various dependencies bump #128

Update to Kotlin 2.0.20 and various dependencies bump

Update to Kotlin 2.0.20 and various dependencies bump #128

Workflow file for this run

name: CI
on:
# Trigger the workflow on push only for the main branch
push:
branches:
- main
# Trigger the workflow on any pull requests
pull_request:
branches:
- '**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Gradle cache
uses: actions/cache@v1
with:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }}
restore-keys: |
${{ runner.os }}-gradle-
- name: Set up JDK
uses: actions/setup-java@v1
with:
java-version: 17
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Run common tests and lint
run: ./gradlew clean shared:checkCommon --parallel --stacktrace -Pskip_gitversion --info
- name: Run Android lint
run: ./gradlew androidApp:ktlintCheck --stacktrace -Pskip_gitversion