From 36bef4aa913a42464a1683380c9c84e2acb3a558 Mon Sep 17 00:00:00 2001 From: Thijs Broersen Date: Sun, 17 Nov 2024 16:33:17 +0100 Subject: [PATCH] use ciCheckMima --- .github/workflows/ci.yml | 2 +- build.sbt | 11 +---------- 2 files changed, 2 insertions(+), 11 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index df22883f5..b52eac58c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -68,7 +68,7 @@ jobs: run: sbt ciCheckGithubWorkflow - name: Lint run: sbt lint - - name: Check mima + - name: Check binary compatibility run: sbt checkMima test: name: Test diff --git a/build.sbt b/build.sbt index 38038db0b..183ed497e 100644 --- a/build.sbt +++ b/build.sbt @@ -36,16 +36,7 @@ inThisBuild( javaPlatform := Versions.JdkReleaseVersion, ciEnabledBranches := Seq("master", "series/4.x"), ciDefaultJavaDistribution := "temurin", - ciLintJobs := ciLintJobs.value.map(job => - job.copy(steps = - job.steps ++ Seq( - zio.sbt.githubactionsnative.Step.SingleStep( - name = "Check mima", - run = Some("sbt checkMima") - ) - ) - ) - ) + ciCheckMima := true ) )