Skip to content

chore(deps): update dependency io.kotest.multiplatform to v6 #412

chore(deps): update dependency io.kotest.multiplatform to v6

chore(deps): update dependency io.kotest.multiplatform to v6 #412

Workflow file for this run

name: Run Tests
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
with:
repository: ${{ github.event.pull_request.head.repo.full_name }}
ref: ${{ github.event.pull_request.head.ref }}
- name: Set up JDK 17
uses: actions/setup-java@3a4f6e1af504cf6a31855fa899c6aa5355ba6c12 # v4
with:
java-version: "17"
distribution: "temurin"
cache: gradle
- name: Give execute permission to ./gradlew
run: chmod +x ./gradlew
- name: Build and Publish Locally
run: "./gradlew clean :build :publishToMavenLocal -x :test -x :jvmTest -Pkotlin.incremental.useClasspathSnapshot=false"
- name: Run Tests
run: "./gradlew test -Pkotlin.incremental.useClasspathSnapshot=false"