Skip to content

Commit a2f4980

Browse files
authored
Merge pull request #91 from mkurz/scala_2.12.20
Add support for Scala 2.12.20
2 parents d855a7c + 62d715c commit a2f4980

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

.github/workflows/ci.yml

+11
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ jobs:
3838
- 2.13.4
3939
- 2.13.3
4040
- 2.13.2
41+
- 2.12.20
4142
- 2.12.19
4243
- 2.12.18
4344
- 2.12.17
@@ -247,6 +248,16 @@ jobs:
247248
tar xf targets.tar
248249
rm targets.tar
249250
251+
- name: Download target directories (2.12.20)
252+
uses: actions/download-artifact@v4
253+
with:
254+
name: target-${{ matrix.os }}-2.12.20-${{ matrix.java }}
255+
256+
- name: Inflate target directories (2.12.20)
257+
run: |
258+
tar xf targets.tar
259+
rm targets.tar
260+
250261
- name: Download target directories (2.12.19)
251262
uses: actions/download-artifact@v4
252263
with:

build.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ inThisBuild(Seq(
2222
scalaVersion := crossScalaVersions.value.head,
2323
crossScalaVersions := Seq(
2424
"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",
25-
"2.12.19", "2.12.18", "2.12.17", "2.12.16", "2.12.15", "2.12.14", "2.12.13", "2.11.12"
25+
"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"
2626
),
2727

2828
githubWorkflowTargetTags ++= Seq("v*"),

0 commit comments

Comments
 (0)