Skip to content

Commit

Permalink
fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
GrigoriiBerezin committed May 10, 2024
1 parent 3b04d2e commit 5b7e28c
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,12 @@ addCommandAlias(

addCommandAlias(
"testScala2JVM",
"zioJsonMacrosJVM/test; zioJsonInteropRefinedJVM/test"
"zioJsonMacrosJVM/test; zioJsonInteropRefinedJVM/test; zioJsonInteropNewtypeJVM/test"
)

addCommandAlias(
"testScala2JS",
"zioJsonMacrosJS/test; zioJsonInteropRefinedJS/test"
"zioJsonMacrosJS/test; zioJsonInteropRefinedJS/test; zioJsonInteropNewtypeJS/test"
)

addCommandAlias(
Expand Down Expand Up @@ -371,6 +371,7 @@ lazy val zioJsonInteropNewtype = crossProject(JSPlatform, JVMPlatform)
"dev.zio" %%% "zio-test" % zioVersion % "test",
"dev.zio" %%% "zio-test-sbt" % zioVersion % "test"
),
scalacOptions += "-language:implicitConversions",
testFrameworks += new TestFramework("zio.test.sbt.ZTestFramework")
)
.enablePlugins(BuildInfoPlugin)
Expand Down Expand Up @@ -400,7 +401,8 @@ lazy val docs = project
zioJsonMacrosJVM,
zioJsonInteropHttp4s,
zioJsonInteropRefined.jvm,
zioJsonInteropScalaz7x.jvm
zioJsonInteropScalaz7x.jvm,
zioJsonInteropNewtype.jvm
)
.settings(
crossScalaVersions -= ScalaDotty,
Expand Down

0 comments on commit 5b7e28c

Please sign in to comment.