We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 05ba2f2 commit bb1147cCopy full SHA for bb1147c
.github/workflows/ci.yml
@@ -35,4 +35,4 @@ jobs:
35
env:
36
SCALA_VERSION: ${{ matrix.scala-version }}
37
SBT_VERSION: ${{ matrix.sbt-version }}
38
- run: sbt "++${SCALA_VERSION}" "^^${SBT_VERSION}" test scripted
+ run: sbt "++${SCALA_VERSION} ; ^^${SBT_VERSION} ; test ; scripted"
build.sbt
@@ -39,3 +39,10 @@ ThisBuild / publishTo := {
39
}
40
ThisBuild / publishMavenStyle := true
41
ThisBuild / dynverSonatypeSnapshots := true
42
+scalacOptions ++= {
43
+ // https://github.com/sbt/sbt/issues/8220
44
+ if (scalaBinaryVersion.value == "2.12")
45
+ Seq("-Wconf:cat=unused-nowarn:s")
46
+ else
47
+ Nil
48
+}
project/build.properties
@@ -1 +1 @@
1
-sbt.version=1.11.4
+sbt.version=2.0.0-RC3
0 commit comments