Skip to content

Commit

Permalink
Merge pull request #25 from 2m/fix/scala-3.5.1-2m
Browse files Browse the repository at this point in the history
Support Scala 3.5.1
  • Loading branch information
ghik authored Sep 22, 2024
2 parents 133105b + 6640a86 commit 6283d0b
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
13 changes: 12 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ jobs:
matrix:
os: [ubuntu-latest]
scala:
- 3.5.1
- 3.5.0
- 3.4.3
- 3.4.2
Expand Down Expand Up @@ -84,7 +85,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
scala: [3.5.0]
scala: [3.5.1]
java: [temurin@17]
runs-on: ${{ matrix.os }}
steps:
Expand All @@ -104,6 +105,16 @@ jobs:
- name: Setup sbt
uses: sbt/setup-sbt@v1

- name: Download target directories (3.5.1)
uses: actions/download-artifact@v4
with:
name: target-${{ matrix.os }}-3.5.1-${{ matrix.java }}

- name: Inflate target directories (3.5.1)
run: |
tar xf targets.tar
rm targets.tar
- name: Download target directories (3.5.0)
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 @@ -2,7 +2,7 @@ inThisBuild(Seq(
organization := "com.github.ghik",
scalaVersion := crossScalaVersions.value.head,
crossScalaVersions := Seq(
"3.5.0",
"3.5.1", "3.5.0",
"3.4.3", "3.4.2", "3.4.1", "3.4.0",
"3.3.3", "3.3.2", "3.3.1", "3.3.0",
"3.2.2", "3.2.1",
Expand Down

0 comments on commit 6283d0b

Please sign in to comment.