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 11package org .simdjson ;
22
3+ import org .junit .jupiter .api .Disabled ;
34import org .junit .jupiter .api .Test ;
45import org .junit .jupiter .params .ParameterizedTest ;
56import org .junit .jupiter .params .provider .ValueSource ;
@@ -290,6 +291,7 @@ public void testInvalidPrimitivesAsRoot(String jsonStr) {
290291 "0e9999999999999999999999999999" ,
291292 "-2402844368454405395.2"
292293 })
294+ @ Disabled ("https://github.com/simdjson/simdjson-java/issues/5" )
293295 public void testFloatValues (String floatStr ) {
294296 // given
295297 SimdJsonParser parser = new SimdJsonParser ();
You can’t perform that action at this time.
0 commit comments