Skip to content

Commit

Permalink
More fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
kyri-petrou committed Nov 28, 2024
1 parent cf824e2 commit 4973f7f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,11 +55,11 @@ jobs:
- name: Cache scala dependencies
uses: coursier/cache-action@v6
- name: Run tests
run: sbt -J-XX:+UseG1GC -J-Xmx6g -J-Xms6g -J-Xss16m ++${{ matrix.scala }}! test
run: sbt -J-XX:+UseG1GC -J-Xmx6g -J-Xms6g -J-Xss16m "++${{ matrix.scala }}; test"
- name: Run DynamoDBLocal
run: docker compose -f docker/docker-compose.yml up -d
- name: Run integration tests
run: sbt -J-XX:+UseG1GC -J-Xmx6g -J-Xms6g -J-Xss16m ++${{ matrix.scala }}! it:test
run: sbt -J-XX:+UseG1GC -J-Xmx6g -J-Xms6g -J-Xss16m "++${{ matrix.scala }}; it:test"

mdoc:
runs-on: ubuntu-20.04
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ import zio.schema.DeriveSchema
import zio.schema.Schema

import java.net.URI
import scala.annotation.nowarn

/**
* example interop app for stream utils
Expand All @@ -29,6 +30,7 @@ import java.net.URI
* zio-dynamodb-examples/runMain zio.dynamodb.examples.dynamodblocal.CeInteropStreamUtilsExample
* }}}
*/
@nowarn("msg=never used") // False positive warning in Scala 2.13
object CeInteropStreamUtilsExample extends IOApp.Simple {

final case class Person(id: String, name: String)
Expand Down
2 changes: 1 addition & 1 deletion project/BuildHelper.scala
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ object BuildHelper {
("com.github.ghik" % "silencer-lib" % SilencerVersion % Provided)
.cross(CrossVersion.full),
compilerPlugin(("com.github.ghik" % "silencer-plugin" % SilencerVersion).cross(CrossVersion.full)),
compilerPlugin("org.typelevel" %% "kind-projector" % "0.10.3")
compilerPlugin(("org.typelevel" %% "kind-projector" % "0.13.3").cross(CrossVersion.full))
)
},
incOptions ~= (_.withLogRecompileOnMacro(false))
Expand Down

0 comments on commit 4973f7f

Please sign in to comment.