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 1 commit
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
33 changes: 3 additions & 30 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,10 +112,10 @@ jobs:
with:
arguments: compileTestKotlin

- name: jvmTest
- name: check
uses: gradle/gradle-build-action@v2
with:
arguments: jvmTest
arguments: check

- name: Create code coverage report
if: "! github.event.pull_request.head.repo.fork "
Expand All @@ -137,34 +137,7 @@ jobs:
if: failure()
uses: actions/upload-artifact@v3
with:
name: 'reports-jvm'
path: '**/build/reports/**'

js:
runs-on: ubuntu-latest
timeout-minutes: 60

steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Set up Java
uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: 11

- name: jsTest
uses: gradle/gradle-build-action@v2
with:
arguments: jsTest --info

- name: Upload reports
if: failure()
uses: actions/upload-artifact@v3
with:
name: 'reports-js'
name: 'reports'
path: '**/build/reports/**'

linux:
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