diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index dccb7773060..3e0c070e146 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -87,7 +87,7 @@ jobs: name: 'reports-windows' path: '**/build/reports/**' - jvm: + check: runs-on: ubuntu-latest timeout-minutes: 60 @@ -112,10 +112,10 @@ jobs: with: arguments: compileTestKotlin - - name: jvmTest + - name: check uses: gradle/gradle-build-action@v2 with: - arguments: jvmTest + arguments: check -x linuxX64Test -x jsTest - name: Create code coverage report if: "! github.event.pull_request.head.repo.fork " @@ -158,7 +158,7 @@ jobs: - name: jsTest uses: gradle/gradle-build-action@v2 with: - arguments: jsTest --info + arguments: jsTest - name: Upload reports if: failure() diff --git a/arrow-libs/core/arrow-core/src/commonMain/kotlin/arrow/core/continuations/Effect.kt b/arrow-libs/core/arrow-core/src/commonMain/kotlin/arrow/core/continuations/Effect.kt index e0e3e67f45d..fd3c5daa6a3 100644 --- a/arrow-libs/core/arrow-core/src/commonMain/kotlin/arrow/core/continuations/Effect.kt +++ b/arrow-libs/core/arrow-core/src/commonMain/kotlin/arrow/core/continuations/Effect.kt @@ -26,19 +26,19 @@ import kotlin.coroutines.resumeWithException * * - * [Writing a program with Effect](#writing-a-program-with-effect) - * [Handling errors](#handling-errors) - * [Structured Concurrency](#structured-concurrency) - * [Arrow Fx Coroutines](#arrow-fx-coroutines) - * [parZip](#parzip) - * [parTraverse](#partraverse) - * [raceN](#racen) - * [bracketCase / Resource](#bracketcase--resource) - * [KotlinX](#kotlinx) - * [withContext](#withcontext) - * [async](#async) - * [launch](#launch) - * [Leaking `shift`](#leaking-shift) + * [Writing a program with Effect](#writing-a-program-with-effect) + * [Handling errors](#handling-errors) + * [Structured Concurrency](#structured-concurrency) + * [Arrow Fx Coroutines](#arrow-fx-coroutines) + * [parZip](#parzip) + * [parTraverse](#partraverse) + * [raceN](#racen) + * [bracketCase / Resource](#bracketcase--resource) + * [KotlinX](#kotlinx) + * [withContext](#withcontext) + * [async](#async) + * [launch](#launch) + * [Leaking `shift`](#leaking-shift) * *