File tree Expand file tree Collapse file tree 2 files changed +22
-0
lines changed
src/test/java/org/simdjson Expand file tree Collapse file tree 2 files changed +22
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : CI
2
+
3
+ on : [ push, pull_request ]
4
+
5
+ jobs :
6
+ build :
7
+ runs-on : ubuntu-latest
8
+
9
+ steps :
10
+ - uses : actions/checkout@v3
11
+ - uses : gradle/wrapper-validation-action@v1
12
+ - name : Set up JDK 20
13
+ uses : actions/setup-java@v3
14
+ with :
15
+ distribution : temurin
16
+ java-version : 20
17
+ - name : Setup Gradle
18
+ uses : gradle/gradle-build-action@v2
19
+ - name : Tests
20
+ run : ./gradlew check
Original file line number Diff line number Diff line change 1
1
package org .simdjson ;
2
2
3
+ import org .junit .jupiter .api .Disabled ;
3
4
import org .junit .jupiter .api .Test ;
4
5
import org .junit .jupiter .params .ParameterizedTest ;
5
6
import org .junit .jupiter .params .provider .ValueSource ;
@@ -290,6 +291,7 @@ public void testInvalidPrimitivesAsRoot(String jsonStr) {
290
291
"0e9999999999999999999999999999" ,
291
292
"-2402844368454405395.2"
292
293
})
294
+ @ Disabled ("https://github.com/simdjson/simdjson-java/issues/5" )
293
295
public void testFloatValues (String floatStr ) {
294
296
// given
295
297
SimdJsonParser parser = new SimdJsonParser ();
You can’t perform that action at this time.
0 commit comments