File tree Expand file tree Collapse file tree 3 files changed +9
-9
lines changed
scex-util/src/test/scala/com/avsystem/scex/util Expand file tree Collapse file tree 3 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 23
23
strategy :
24
24
matrix :
25
25
os : [ubuntu-latest]
26
- scala : [2.13.14 ]
26
+ scala : [2.13.15 ]
27
27
java : [temurin@17, temurin@21]
28
28
runs-on : ${{ matrix.os }}
29
29
steps :
73
73
strategy :
74
74
matrix :
75
75
os : [ubuntu-latest]
76
- scala : [2.13.14 ]
76
+ scala : [2.13.15 ]
77
77
java : [temurin@17]
78
78
runs-on : ${{ matrix.os }}
79
79
steps :
@@ -101,12 +101,12 @@ jobs:
101
101
- name : Setup sbt
102
102
uses : sbt/setup-sbt@v1
103
103
104
- - name : Download target directories (2.13.14 )
104
+ - name : Download target directories (2.13.15 )
105
105
uses : actions/download-artifact@v4
106
106
with :
107
- name : target-${{ matrix.os }}-2.13.14 -${{ matrix.java }}
107
+ name : target-${{ matrix.os }}-2.13.15 -${{ matrix.java }}
108
108
109
- - name : Inflate target directories (2.13.14 )
109
+ - name : Inflate target directories (2.13.15 )
110
110
run : |
111
111
tar xf targets.tar
112
112
rm targets.tar
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ name := "scex"
2
2
3
3
inThisBuild(Seq (
4
4
organization := " com.avsystem.scex" ,
5
- scalaVersion := " 2.13.14 " ,
5
+ scalaVersion := " 2.13.15 " ,
6
6
7
7
githubWorkflowTargetTags ++= Seq (" v*" ),
8
8
githubWorkflowJavaVersions := Seq (JavaSpec .temurin(" 17" ), JavaSpec .temurin(" 21" )),
@@ -22,12 +22,12 @@ inThisBuild(Seq(
22
22
val CompileAndTest = " compile->compile;test->test"
23
23
24
24
val parserCombinatorsVersion = " 2.4.0"
25
- val avsCommonsVersion = " 2.18 .0"
25
+ val avsCommonsVersion = " 2.20 .0"
26
26
val slf4jVersion = " 2.0.16"
27
27
val logbackVersion = " 1.5.7" // Tests only
28
28
val commonsLang3Version = " 3.17.0"
29
29
val commonsCodecVersion = " 1.17.1"
30
- val guavaVersion = " 33.3.0 -jre"
30
+ val guavaVersion = " 33.3.1 -jre"
31
31
val commonsNetVersion = " 3.11.1"
32
32
val scalatestVersion = " 3.2.19"
33
33
Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ class QmarkTest extends AnyFunSuite {
48
48
def expression = ju.Arrays .asList[Int ]().mean
49
49
50
50
assertThrows[IllegalArgumentException ](ju.Arrays .asList[Int ]().mean)
51
- assert(0 == expression ? 0 )
51
+ assert(0.0 == expression ? 0. 0 )
52
52
}
53
53
54
54
test(" recover from ParseException" ) {
You can’t perform that action at this time.
0 commit comments