Skip to content

Commit d855a7c

Browse files
authored
Merge pull request #90 from Tochemey/master
feat: add support for scala 2.13.15
2 parents cb6150d + f677d3e commit d855a7c

File tree

2 files changed

+13
-2
lines changed

2 files changed

+13
-2
lines changed

.github/workflows/ci.yml

+12-1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ jobs:
2424
matrix:
2525
os: [ubuntu-latest]
2626
scala:
27+
- 2.13.15
2728
- 2.13.14
2829
- 2.13.13
2930
- 2.13.12
@@ -86,7 +87,7 @@ jobs:
8687
strategy:
8788
matrix:
8889
os: [ubuntu-latest]
89-
scala: [2.13.14]
90+
scala: [2.13.15]
9091
java: [temurin@17]
9192
runs-on: ${{ matrix.os }}
9293
steps:
@@ -106,6 +107,16 @@ jobs:
106107
- name: Setup sbt
107108
uses: sbt/setup-sbt@v1
108109

110+
- name: Download target directories (2.13.15)
111+
uses: actions/download-artifact@v4
112+
with:
113+
name: target-${{ matrix.os }}-2.13.15-${{ matrix.java }}
114+
115+
- name: Inflate target directories (2.13.15)
116+
run: |
117+
tar xf targets.tar
118+
rm targets.tar
119+
109120
- name: Download target directories (2.13.14)
110121
uses: actions/download-artifact@v4
111122
with:

build.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ inThisBuild(Seq(
2121
organization := "com.github.ghik",
2222
scalaVersion := crossScalaVersions.value.head,
2323
crossScalaVersions := Seq(
24-
"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",
24+
"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",
2525
"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

0 commit comments

Comments
 (0)