Skip to content

Commit

Permalink
Update scala-library, scala-reflect to 2.13.13 (#347)
Browse files Browse the repository at this point in the history
Co-authored-by: Andriy Onyshchuk <[email protected]>
  • Loading branch information
scala-steward and andyglow authored Mar 5, 2024
1 parent a96f2b4 commit 34ebd8c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
scala: [2.13.12, 2.12.19, 2.11.12]
scala: [2.13.13, 2.12.19, 2.11.12]
java: [temurin@11]
runs-on: ${{ matrix.os }}
steps:
Expand All @@ -46,15 +46,15 @@ jobs:
run: sbt '++ ${{ matrix.scala }}' test

- name: Generate Code Coverage Reports
if: matrix.scala == '2.13.12'
if: matrix.scala == '2.13.13'
run: sbt '++ ${{ matrix.scala }}' clean coverage test

- name: Aggregate Code Coverage Report
if: matrix.scala == '2.13.12'
if: matrix.scala == '2.13.13'
run: sbt '++ ${{ matrix.scala }}' coverageAggregate

- name: Upload Code Coverage Report
if: matrix.scala == '2.13.12'
if: matrix.scala == '2.13.13'
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
2 changes: 1 addition & 1 deletion project/ScalaVer.scala
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ object ScalaVer {

case object _212 extends ScalaVer("2.12.19")

case object _213 extends ScalaVer("2.13.12")
case object _213 extends ScalaVer("2.13.13")

val values: Seq[ScalaVer] = Set(_213, _212, _211).toSeq

Expand Down

0 comments on commit 34ebd8c

Please sign in to comment.