Skip to content

Commit

Permalink
Update scala-library to 2.13.12
Browse files Browse the repository at this point in the history
  • Loading branch information
fgrutsch committed Sep 20, 2023
1 parent 40df941 commit 66761cb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 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.1]
scala: [2.13.12, 3.3.1]
java: [temurin@11, temurin@17]
runs-on: ${{ matrix.os }}
steps:
Expand Down Expand Up @@ -64,11 +64,11 @@ jobs:
- if: matrix.scala == '3.3.1'
run: sbt ++${{ matrix.scala }} coverage test coverageReport coverageAggregate

- if: matrix.scala == '2.13.11'
- if: matrix.scala == '2.13.12'
run: sbt ++${{ matrix.scala }} codeVerify coverage test coverageReport coverageAggregate

- name: Upload coverage to Codecov
if: matrix.scala == '2.13.11'
if: matrix.scala == '2.13.12'
uses: codecov/codecov-action@v3
with:
fail_ci_if_error: true
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.1")
ThisBuild / crossScalaVersions := Seq("2.13.12", "3.3.1")

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

0 comments on commit 66761cb

Please sign in to comment.