Skip to content

Commit

Permalink
Fix knitCheck & re-add check (#2887)
Browse files Browse the repository at this point in the history
* Use check -x linuxX64Test -x jsTest
  • Loading branch information
nomisRev committed Jan 16, 2023
1 parent 7156f4a commit 0dd37b5
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 17 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/pull_request.yml
Expand Up @@ -87,7 +87,7 @@ jobs:
name: 'reports-windows'
path: '**/build/reports/**'

jvm:
check:
runs-on: ubuntu-latest
timeout-minutes: 60

Expand All @@ -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 "
Expand Down Expand Up @@ -158,7 +158,7 @@ jobs:
- name: jsTest
uses: gradle/gradle-build-action@v2
with:
arguments: jsTest --info
arguments: jsTest

- name: Upload reports
if: failure()
Expand Down
Expand Up @@ -26,19 +26,19 @@ import kotlin.coroutines.resumeWithException
*
* <!--- TOC -->
* [Writing a program with Effect<R, A>](#writing-a-program-with-effect<r-a>)
* [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<R, A>](#writing-a-program-with-effect<r-a>)
* [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)
* <!--- END -->
*
Expand Down

0 comments on commit 0dd37b5

Please sign in to comment.