File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 2424 strategy :
2525 matrix :
2626 os : [ubuntu-latest]
27- scala : [2.11.12, 2.12.19, 2.13.13 , 3.4.1]
27+ scala : [2.11.12, 2.12.19, 2.13.14 , 3.4.1]
2828 java : [temurin@11, temurin@17]
2929 runs-on : ${{ matrix.os }}
3030 steps :
@@ -56,15 +56,15 @@ jobs:
5656 run : sbt '++ ${{ matrix.scala }}' test
5757
5858 - name : Generate Code Coverage Reports
59- if : matrix.scala == '2.13.13 '
59+ if : matrix.scala == '2.13.14 '
6060 run : sbt '++ ${{ matrix.scala }}' clean coverage test
6161
6262 - name : Aggregate Code Coverage Report
63- if : matrix.scala == '2.13.13 '
63+ if : matrix.scala == '2.13.14 '
6464 run : sbt '++ ${{ matrix.scala }}' coverageAggregate
6565
6666 - name : Upload Code Coverage Report
67- if : matrix.scala == '2.13.13 '
67+ if : matrix.scala == '2.13.14 '
6868 uses : codecov/codecov-action@v3
6969 with :
7070 token : ${{ secrets.CODECOV_TOKEN }}
Original file line number Diff line number Diff line change 11object ScalaVersions {
22 val scala211 = " 2.11.12"
33 val scala212 = " 2.12.19"
4- val scala213 = " 2.13.13 "
4+ val scala213 = " 2.13.14 "
55 val scala3 = " 3.4.1"
66
77 def allScalaVersions (excluding : String => Boolean = _ => false ): List [String ] =
You can’t perform that action at this time.
0 commit comments