Skip to content

Commit

Permalink
Add Scala 3.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
BardurArantsson committed May 24, 2024
1 parent a6a3d50 commit 4aa248d
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.4.2
- 3.4.1
- 3.4.0
- 3.3.3
Expand Down Expand Up @@ -89,7 +90,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
scala: [3.4.1]
scala: [3.4.2]
java: [temurin@17]
runs-on: ${{ matrix.os }}
steps:
Expand Down Expand Up @@ -117,6 +118,16 @@ jobs:
~/Library/Caches/Coursier/v1
key: ${{ runner.os }}-sbt-cache-v2-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('project/build.properties') }}

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

- name: Inflate target directories (3.4.2)
run: |
tar xf targets.tar
rm targets.tar
- name: Download target directories (3.4.1)
uses: actions/download-artifact@v2
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.4.1", "3.4.0",
"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",
"2.13.10", "2.13.11", "2.13.12", "2.13.13", "2.13.14",
Expand Down

0 comments on commit 4aa248d

Please sign in to comment.