Skip to content

Commit

Permalink
Update scala3-library to 3.3.1 (#148)
Browse files Browse the repository at this point in the history
* Update scala3-library to 3.3.1

* Regenerate GitHub Actions workflow

Executed command: sbt githubWorkflowGenerate
  • Loading branch information
fgrutsch authored Sep 13, 2023
1 parent 2e6145f commit 708d6c9
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
scala: [2.13.11, 3.3.0]
scala: [2.13.11, 3.3.1]
java: [temurin@11, temurin@17]
runs-on: ${{ matrix.os }}
steps:
Expand Down Expand Up @@ -61,7 +61,7 @@ jobs:
- name: Check that workflows are up to date
run: sbt ++${{ matrix.scala }} githubWorkflowCheck

- if: matrix.scala == '3.3.0'
- if: matrix.scala == '3.3.1'
run: sbt ++${{ matrix.scala }} coverage test coverageReport coverageAggregate

- if: matrix.scala == '2.13.11'
Expand Down Expand Up @@ -89,7 +89,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
scala: [3.3.0]
scala: [3.3.1]
java: [temurin@11]
runs-on: ${{ matrix.os }}
steps:
Expand Down Expand Up @@ -134,12 +134,12 @@ jobs:
tar xf targets.tar
rm targets.tar
- name: Download target directories (3.3.0)
- name: Download target directories (3.3.1)
uses: actions/download-artifact@v2
with:
name: target-${{ matrix.os }}-3.3.0-${{ matrix.java }}
name: target-${{ matrix.os }}-3.3.1-${{ matrix.java }}

- name: Inflate target directories (3.3.0)
- name: Inflate target directories (3.3.1)
run: |
tar xf targets.tar
rm targets.tar
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import java.time.LocalDate
ThisBuild / scalafixDependencies += Dependencies.organizeImports
ThisBuild / versionScheme := Some("early-semver")
ThisBuild / scalaVersion := crossScalaVersions.value.last
ThisBuild / crossScalaVersions := Seq("2.13.11", "3.3.0")
ThisBuild / crossScalaVersions := Seq("2.13.11", "3.3.1")

addCommandAlias("codeFmt", ";headerCreate;scalafmtAll;scalafmtSbt;scalafixAll")
addCommandAlias("codeVerify", ";scalafmtCheckAll;scalafmtSbtCheck;scalafixAll --check;headerCheck")
Expand Down

0 comments on commit 708d6c9

Please sign in to comment.