Skip to content

Commit

Permalink
Updates
Browse files Browse the repository at this point in the history
  • Loading branch information
vigoo committed Feb 17, 2023
1 parent b03dd66 commit 4f21125
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
strategy:
fail-fast: false
matrix:
scala: ['2.13.10', "3.2.1"]
scala: ['2.13.10', "3.2.2"]
steps:
- name: Checkout
uses: actions/checkout@v2
Expand All @@ -19,8 +19,8 @@ jobs:
- name: Coursier cache
uses: coursier/cache-action@v5
- name: Build and test
if: ${{ matrix.scala == '3.2.1' }}
if: ${{ matrix.scala == '3.2.2' }}
run: sbt ++${{ matrix.scala }} clean desert-core/test desert-coreJS/test desert-akka/test desert-cats/test desert-catsJS/test desert-cats-effect/test desert-cats-effectJS/test desert-zio/test desert-zioJS/test desert-zio-schema/test desert-zio-schemaJS/test desert-shardcake/test
- name: Build and test
if: ${{ matrix.scala != '3.2.1' }}
if: ${{ matrix.scala != '3.2.2' }}
run: sbt ++${{ matrix.scala }} clean coverage test coverageReport && bash <(curl -s https://codecov.io/bash)
8 changes: 4 additions & 4 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import xerial.sbt.Sonatype._
val scala2 = "2.13.10"
val scala3 = "3.2.2"

val zioVersion = "2.0.6"
val zioSchemaVersion = "0.4.7"
val zioVersion = "2.0.9"
val zioSchemaVersion = "0.4.8"

name := "desert"

Expand Down Expand Up @@ -153,7 +153,7 @@ lazy val catsEffect = CrossProject("desert-cats-effect", file("desert-cats-effec
.settings(
description := "Cats-effect API bindings for desert",
libraryDependencies ++= Seq(
"org.typelevel" %% "cats-effect" % "3.4.6"
"org.typelevel" %% "cats-effect" % "3.4.7"
)
)
.jsSettings(coverageEnabled := false)
Expand Down Expand Up @@ -239,7 +239,7 @@ lazy val docsPlugins = project
coverageEnabled := false,
crossScalaVersions -= scala3,
libraryDependencies ++= Seq(
"org.scalameta" %% "mdoc-cli" % "2.3.6"
"org.scalameta" %% "mdoc-cli" % "2.3.7"
)
)
.dependsOn(core.jvm)
Expand Down

0 comments on commit 4f21125

Please sign in to comment.