Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update scala-library to 2.13.13 #290

Merged
merged 1 commit into from
Feb 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
scala: [2.11.12, 2.12.19, 2.13.12, 3.3.1]
scala: [2.11.12, 2.12.19, 2.13.13, 3.3.1]
java: [temurin@11, temurin@17]
runs-on: ${{ matrix.os }}
steps:
Expand Down Expand Up @@ -56,15 +56,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/ScalaVersions.scala
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
object ScalaVersions {
val scala211 = "2.11.12"
val scala212 = "2.12.19"
val scala213 = "2.13.12"
val scala213 = "2.13.13"
val scala3 = "3.3.1"

def allScalaVersions(excluding: String => Boolean = _ => false): List[String] =
Expand Down
Loading