File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed
core/jvm/src/test/scala/org/specs2/io Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 23
23
strategy :
24
24
matrix :
25
25
os : [ubuntu-latest]
26
- scala : [3.2.2 ]
26
+ scala : [3.3.0 ]
27
27
java : [temurin@18]
28
28
runs-on : ${{ matrix.os }}
29
29
steps :
56
56
strategy :
57
57
matrix :
58
58
os : [ubuntu-latest]
59
- scala : [3.2.2 ]
59
+ scala : [3.3.0 ]
60
60
java : [temurin@18]
61
61
runs-on : ${{ matrix.os }}
62
62
steps :
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ lazy val specs2 = project
38
38
39
39
/** COMMON SETTINGS */
40
40
41
- val Scala3 = " 3.2.2 "
41
+ val Scala3 = " 3.3.0 "
42
42
43
43
lazy val specs2Settings = Seq (
44
44
organization := " org.specs2" ,
Original file line number Diff line number Diff line change @@ -60,9 +60,9 @@ class LocationSpec extends org.specs2.mutable.Spec with TypedEqual:
60
60
}
61
61
}
62
62
63
- def lineNumber (on322 : Int , onLater : Int ): Int =
63
+ def lineNumber (on330 : Int , onLater : Int ): Int =
64
64
val scalaVersion = org.specs2.BuildInfo .scalaVersion
65
- if scalaVersion == " 3.2.2 " then on322 else onLater
65
+ if scalaVersion == " 3.3.0 " then on330 else onLater
66
66
67
67
def textAt (index : Int )(using spec : WithFragments ) = fragmentLine(isText, index)
68
68
def exampleAt (index : Int )(using spec : WithFragments ) = fragmentLine(isExample, index)
Original file line number Diff line number Diff line change 1
- val scalaJSVersion = Option (System .getenv(" SCALAJS_VERSION" )).getOrElse(" 1.13.0 " )
1
+ val scalaJSVersion = Option (System .getenv(" SCALAJS_VERSION" )).getOrElse(" 1.13.1 " )
2
2
3
3
// dev
4
4
addSbtPlugin(" org.scalameta" % " sbt-scalafmt" % " 2.4.6" )
You can’t perform that action at this time.
0 commit comments