Skip to content

chore(deps): update actions/cache action to v4.1.2 #687

chore(deps): update actions/cache action to v4.1.2

chore(deps): update actions/cache action to v4.1.2 #687

Workflow file for this run

on:
push:
branches:
- develop
- renovate/**
pull_request:
branches:
- develop
name: Run tests
jobs:
check:
strategy:
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
runs-on: ${{ matrix.os }}
steps:
- name: Checkout repository
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
- name: Set up JDK
uses: actions/setup-java@b36c23c0d998641eff861008f374ee103c25ac73 # v4.4.0
with:
distribution: temurin
java-version: 11
- name: Cache Kotlin/Native compiler
uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4.1.2
with:
path: ~/.konan
key: ${{ runner.os }}-gradle-${{ hashFiles('gradle/wrapper/gradle-wrapper.properties', 'gradle/libs.versions.toml') }}
- name: Setup Gradle
uses: gradle/actions/setup-gradle@d156388eb19639ec20ade50009f3d199ce1e2808 # v4
with:
gradle-home-cache-cleanup: true
add-job-summary: always
validate-wrappers: true
- name: Run unit tests
shell: bash
run: ./gradlew check -PenableNativeTargets --stacktrace