Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix knitCheck & re-add check #2887

Merged
merged 2 commits into from
Jan 16, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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