Skip to content
This repository was archived by the owner on Mar 24, 2025. It is now read-only.

Commit e0d7dda

Browse files
committed
fix ci
Signed-off-by: 梦境迷离 <dreamylost@outlook.com>
1 parent 123dd6b commit e0d7dda

File tree

3 files changed

+5
-11
lines changed

3 files changed

+5
-11
lines changed

build.sbt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ lazy val scala212 = "2.12.17"
3434
lazy val scala211 = "2.11.12"
3535
lazy val scala213 = "2.13.8"
3636

37-
lazy val scalatestVersion = "3.2.15"
38-
lazy val h2 = "2.1.214"
37+
lazy val scalatestVersion = "3.2.15"
38+
lazy val h2 = "2.1.214"
3939

4040
lazy val commonSettings =
4141
Seq(
@@ -78,7 +78,7 @@ lazy val `smt-annotations` = (project in file("smt-annotations"))
7878
.settings(commonSettings)
7979
.settings(
8080
name := "smt-annotations",
81-
crossScalaVersions := List(scala213, scala212, scala211),
81+
crossScalaVersions := List(scala213, scala212, scala211)
8282
)
8383
.settings(paradise())
8484
.enablePlugins(HeaderPlugin)

project/Commands.scala

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,12 @@ object Commands {
99

1010
val FmtSbtCommand = Command.command("fmt")(state => "scalafmtSbt" :: "scalafmtAll" :: state)
1111

12-
val FixSbtCommand = Command.command("fix")(state => "scalafixEnable" :: "scalafixAll RemoveUnused" :: state)
13-
1412
val FmtSbtCheckCommand =
15-
Command.command("check")(state =>
16-
"scalafixEnable" :: "scalafixAll --check" :: "scalafmtSbtCheck" :: "scalafmtCheckAll" :: state
17-
)
13+
Command.command("check")(state => "scalafmtSbtCheck" :: "scalafmtCheckAll" :: state)
1814

1915
val value = Seq(
2016
FmtSbtCommand,
21-
FmtSbtCheckCommand,
22-
FixSbtCommand
17+
FmtSbtCheckCommand
2318
)
2419

2520
}

project/plugins.sbt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,3 @@ addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.11")
22
addSbtPlugin("de.heikoseeberger" % "sbt-header" % "5.9.0")
33
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.0.7")
44
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.0")
5-
addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.10.4")

0 commit comments

Comments
 (0)