File tree Expand file tree Collapse file tree 2 files changed +2
-14
lines changed
Expand file tree Collapse file tree 2 files changed +2
-14
lines changed Original file line number Diff line number Diff line change 1313 strategy :
1414 fail-fast : false
1515 matrix :
16- scalaversion : ["2.11.12", "2.12.10", "2.13.1"]
17- scalajsversion : ["1.x", "0.6.x"]
18- include :
19- - scalaversion : " 2.10.7"
20- scalajsversion : " 0.6.x"
21- - scalaversion : " 3.0.1"
22- scalajsversion : " 1.x"
23- env :
24- SCALAJS_VERSION : " ${{ matrix.scalajsversion == '0.6.x' && '0.6.28' || '' }}"
16+ scalaversion : ["2.11.12", "2.12.10", "2.13.1", "3.0.1"]
2517 steps :
2618
2719 - uses : actions/checkout@v2
Original file line number Diff line number Diff line change @@ -17,10 +17,7 @@ lazy val root = project
1717
1818name := " Scala.js DOM"
1919
20- ThisBuild / crossScalaVersions := {
21- if (scalaJSVersion.startsWith(" 1." )) Seq (" 2.12.10" , " 2.11.12" , " 2.13.1" , " 3.0.1" )
22- else Seq (" 2.12.10" , " 2.11.12" , " 2.10.7" , " 2.13.1" )
23- }
20+ ThisBuild / crossScalaVersions := Seq (" 2.12.10" , " 2.11.12" , " 2.13.1" , " 3.0.1" )
2421ThisBuild / scalaVersion := crossScalaVersions.value.head
2522
2623val commonSettings = Seq (
@@ -51,7 +48,6 @@ scalacOptions ++= {
5148}
5249
5350def hasNewCollections (version : String ): Boolean = {
54- ! version.startsWith(" 2.10." ) &&
5551 ! version.startsWith(" 2.11." ) &&
5652 ! version.startsWith(" 2.12." )
5753}
You can’t perform that action at this time.
0 commit comments