Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ val ScalaTestPlusVersion = "3.2.9.0"

lazy val root = (project in file("."))
.settings(
scalaVersion := "2.12.14",
crossScalaVersions := Seq("2.12.14", "2.13.6", "3.0.2"),
scalaVersion := "2.12.19",
crossScalaVersions := Seq("2.12.19", "2.13.6", "3.0.2"),

Test / test := {
val _ = (Test / g8Test).toTask("").value
Expand Down
6 changes: 3 additions & 3 deletions src/main/g8/.github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
matrix:
os: [ubuntu-20.04]
java: [8, 11]
scala: [2.12.14, 2.13.6, 3.0.2]
scala: [2.12.19, 2.13.6, 3.0.2]
command: ["ci-jvm"]

runs-on: \${{ matrix.os }}
Expand All @@ -40,7 +40,7 @@ jobs:
matrix:
os: [ubuntu-20.04]
java: [11]
scala: [2.12.14, 2.13.6, 3.0.2]
scala: [2.12.19, 2.13.6, 3.0.2]
scalajs: [1.7.0]
command: [ci-js]

Expand All @@ -67,7 +67,7 @@ jobs:
matrix:
os: [ubuntu-20.04]
java: [11]
scala: [2.12.14, 2.13.6, 3.0.2]
scala: [2.12.19, 2.13.6, 3.0.2]
scalajs: [1.7.0]
command: [ci-package]

Expand Down
2 changes: 1 addition & 1 deletion src/main/g8/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ lazy val sharedSettings = Seq(

organization := "$organization$",
scalaVersion := "2.13.6",
crossScalaVersions := Seq("2.12.14", "2.13.6", "3.0.2"),
crossScalaVersions := Seq("2.12.19", "2.13.6", "3.0.2"),

// Turning off fatal warnings for doc generation
Compile / doc / scalacOptions ~= filterConsoleScalacOptions,
Expand Down