Skip to content

Commit

Permalink
Merge branch 'develop' into snippet/zio-test-clock-example
Browse files Browse the repository at this point in the history
  • Loading branch information
neko-kai committed Jan 24, 2025
2 parents 608c2ab + 8096ac2 commit 201d6d9
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 9 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,14 @@ jobs:
sbt-test:
runs-on: ubuntu-latest
steps:
- uses: sbt/setup-sbt@v1 # setup sbt
- uses: actions/checkout@v2
- name: Run tests
run: sbt +test
build-native:
runs-on: ubuntu-latest
steps:
- uses: sbt/setup-sbt@v1 # setup sbt
- uses: actions/checkout@v2
- name: Build native app
run: sbt "project bifunctor-tagless; GraalVMNativeImage/packageBin"
Expand Down
2 changes: 1 addition & 1 deletion .scalafmt.conf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version = "3.8.2"
version = "3.8.6"
runner.dialect = scala213source3
project.git = true

Expand Down
14 changes: 7 additions & 7 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ val V = new {
val distage = "1.2.16"
val logstage = distage
val scalatest = "3.2.19"
val scalacheck = "1.18.0"
val http4s = "0.23.29"
val scalacheck = "1.18.1"
val http4s = "0.23.30"
val doobie = "1.0.0-RC5"
val catsCore = "2.12.0"
val catsCore = "2.13.0"
val zio = "2.1.13"
val zioCats = "23.0.0.8"
val kindProjector = "0.13.3"
val circeGeneric = "0.14.8"
val graalMetadata = "0.10.3"
val circeGeneric = "0.14.10"
val graalMetadata = "0.10.4"
val catsEffect = "3.5.4"
}

Expand Down Expand Up @@ -73,8 +73,8 @@ val Deps = new {

inThisBuild(
Seq(
crossScalaVersions := Seq("2.13.15", "3.3.4"),
// crossScalaVersions := Seq("3.3.4", "2.13.15"), // uncomment to use Scala 3 in IDE
crossScalaVersions := Seq("2.13.16", "3.3.4"),
// crossScalaVersions := Seq("3.3.4", "2.13.16"), // uncomment to use Scala 3 in IDE
scalaVersion := crossScalaVersions.value.head,
version := "1.0.0",
organization := "io.7mind",
Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=1.10.5
sbt.version=1.10.7

0 comments on commit 201d6d9

Please sign in to comment.