Skip to content

Commit

Permalink
debugging ci failures
Browse files Browse the repository at this point in the history
  • Loading branch information
fwbrasil committed Sep 20, 2023
1 parent dd7a71e commit 9b9b619
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 3 deletions.
14 changes: 12 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,15 @@ jobs:
- uses: olafurpg/setup-scala@v13
with:
java-version: [email protected]
- name: build
run: sbt "+test"

- name: Build Scala 2 (JVM)
run: sbt "++2 ; kyo-bench/test ; kyo-chatgpt/test ; kyo-core/test ; kyo-core-opt/test ; kyo-direct/test ; kyo-sttp/test ; kyo-zio/test"

- name: Build Scala 2 (JS)
run: sbt "++2 ; kyo-chatgptJS/test ; kyo-coreJS/test ; kyo-directJS/test ; kyo-sttpJS/test ; kyo-zioJS/test"

- name: Build Scala 3 (JVM)
run: sbt "++3 ; kyo-bench/test ; kyo-chatgpt/test ; kyo-core/test ; kyo-core-opt/test ; kyo-direct/test ; kyo-sttp/test ; kyo-zio/test"

- name: Build Scala 3 (JS)
run: sbt "++3 ; kyo-chatgptJS/test ; kyo-coreJS/test ; kyo-directJS/test ; kyo-sttpJS/test ; kyo-zioJS/test"
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ String > (Options with IOs)
In Kyo, any type `T` is automatically considered to be of type `T > Any`, where `Any` denotes an absence of pending effects. In simpler terms, this means that every value in Kyo is automatically a computation, but one without any effects that you need to handle.

This design choice streamlines your code by removing the necessity to differentiate between pure values and computations that may have effects. So, when you're dealing with a value of type `T > Any`, you can safely extract the `pure` value directly, without worrying about handling any side-effects.
This design choice streamlines your code by removing the necessity to differentiate between pure values and computations that may have effects. So, when you're dealing with a value of type `T > Any`, you can safely extract the `pure` value directly, without worrying about handling any effects.

```scala
import kyo._
Expand Down

0 comments on commit 9b9b619

Please sign in to comment.