Skip to content

Commit

Permalink
Merge pull request #91 from mkurz/scala_2.12.20
Browse files Browse the repository at this point in the history
Add support for Scala 2.12.20
  • Loading branch information
ghik authored Oct 12, 2024
2 parents d855a7c + 62d715c commit a2f4980
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
11 changes: 11 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ jobs:
- 2.13.4
- 2.13.3
- 2.13.2
- 2.12.20
- 2.12.19
- 2.12.18
- 2.12.17
Expand Down Expand Up @@ -247,6 +248,16 @@ jobs:
tar xf targets.tar
rm targets.tar
- name: Download target directories (2.12.20)
uses: actions/download-artifact@v4
with:
name: target-${{ matrix.os }}-2.12.20-${{ matrix.java }}

- name: Inflate target directories (2.12.20)
run: |
tar xf targets.tar
rm targets.tar
- name: Download target directories (2.12.19)
uses: actions/download-artifact@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ inThisBuild(Seq(
scalaVersion := crossScalaVersions.value.head,
crossScalaVersions := Seq(
"2.13.15", "2.13.14", "2.13.13", "2.13.12", "2.13.11", "2.13.10", "2.13.9", "2.13.8", "2.13.7", "2.13.6", "2.13.5", "2.13.4", "2.13.3", "2.13.2",
"2.12.19", "2.12.18", "2.12.17", "2.12.16", "2.12.15", "2.12.14", "2.12.13", "2.11.12"
"2.12.20", "2.12.19", "2.12.18", "2.12.17", "2.12.16", "2.12.15", "2.12.14", "2.12.13", "2.11.12"
),

githubWorkflowTargetTags ++= Seq("v*"),
Expand Down

0 comments on commit a2f4980

Please sign in to comment.