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.20, 2.13.17 , 3.7.4]
27+ scala : [2.11.12, 2.12.20, 2.13.18 , 3.7.4]
2828 java : [temurin@11, temurin@17]
2929 runs-on : ${{ matrix.os }}
3030 steps :
@@ -59,15 +59,15 @@ jobs:
5959 run : sbt '++ ${{ matrix.scala }}' test
6060
6161 - name : Generate Code Coverage Reports
62- if : matrix.scala == '2.13.17 '
62+ if : matrix.scala == '2.13.18 '
6363 run : sbt '++ ${{ matrix.scala }}' clean coverage test
6464
6565 - name : Aggregate Code Coverage Report
66- if : matrix.scala == '2.13.17 '
66+ if : matrix.scala == '2.13.18 '
6767 run : sbt '++ ${{ matrix.scala }}' coverageAggregate
6868
6969 - name : Upload Code Coverage Report
70- if : matrix.scala == '2.13.17 '
70+ if : matrix.scala == '2.13.18 '
7171 uses : codecov/codecov-action@v3
7272 with :
7373 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.20"
4- val scala213 = " 2.13.17 "
4+ val scala213 = " 2.13.18 "
55 val scala3 = " 3.7.4"
66
77 def allScalaVersions (excluding : String => Boolean = _ => false ): List [String ] =
You can’t perform that action at this time.
0 commit comments