Skip to content

Commit

Permalink
add mima checks
Browse files Browse the repository at this point in the history
  • Loading branch information
IvanFinochenko committed Apr 23, 2024
1 parent 98eb282 commit dfa9be7
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ enablePlugins(ZioSbtEcosystemPlugin, ZioSbtCiPlugin)

inThisBuild(
List(
name := "ZIO Telemetry",
organization := "dev.zio",
zioVersion := "2.0.22",
homepage := Some(url("https://zio.dev/zio-telemetry/")),
licenses := List("Apache-2.0" -> url("http://www.apache.org/licenses/LICENSE-2.0")),
developers := List(
name := "ZIO Telemetry",
organization := "dev.zio",
zioVersion := "2.0.22",
homepage := Some(url("https://zio.dev/zio-telemetry/")),
licenses := List("Apache-2.0" -> url("http://www.apache.org/licenses/LICENSE-2.0")),
developers := List(
Developer(
"mijicd",
"Dejan Mijic",
Expand All @@ -30,17 +30,17 @@ inThisBuild(
url("https://github.com/grouzen")
)
),
ciEnabledBranches := Seq("series/2.x"),
ciEnabledBranches := Seq("series/2.x"),
ciCheckArtifactsBuildSteps ++= Seq(
SingleStep(
name = "Mima check",
run = Some("sbt mimaChecks")
)
),
pgpPassphrase := sys.env.get("PGP_PASSWORD").map(_.toArray),
pgpPublicRing := file("/tmp/public.asc"),
pgpSecretRing := file("/tmp/secret.asc"),
scmInfo := Some(
pgpPassphrase := sys.env.get("PGP_PASSWORD").map(_.toArray),
pgpPublicRing := file("/tmp/public.asc"),
pgpSecretRing := file("/tmp/secret.asc"),
scmInfo := Some(
ScmInfo(
url("https://github.com/zio/zio-telemetry/"),
"scm:git:git@github.com:zio/zio-telemetry.git"
Expand Down

0 comments on commit dfa9be7

Please sign in to comment.