Skip to content

Commit

Permalink
get back scala 2.12
Browse files Browse the repository at this point in the history
  • Loading branch information
dos65 committed Mar 14, 2024
1 parent 5305259 commit d8fa5eb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/scala.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest]
# FIXME Use stable scala version
scala: [2.13.12, 3.3.0]
scala: [2.12.19, 2.13.12, 3.3.0]

steps:
- uses: actions/checkout@v3
Expand Down
3 changes: 2 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
lazy val scala212 = "2.12.19"
lazy val scala213 = "2.13.12"
/* FIXME
Return to use a stable version when 'scala.quoted.Quotes.reflectModuleSymbol.newClass'
Expand Down Expand Up @@ -66,7 +67,7 @@ def crossScalaSettings = {
}

Seq(
crossScalaVersions := Seq(scala213, scala3),
crossScalaVersions := Seq(scala212, scala213, scala3),
Compile / unmanagedSourceDirectories ++= addDirsByScalaVersion("src/main").value,
Test / unmanagedSourceDirectories ++= addDirsByScalaVersion("src/test").value
)
Expand Down

0 comments on commit d8fa5eb

Please sign in to comment.