File tree Expand file tree Collapse file tree 3 files changed +9
-5
lines changed
src/main/java/graphql/annotations/processor/typeFunctions Expand file tree Collapse file tree 3 files changed +9
-5
lines changed Original file line number Diff line number Diff line change 3
3
4
4
name : Build
5
5
6
- on : [push]
6
+ on : [push, pull_request ]
7
7
8
8
jobs :
9
9
build :
19
19
run : chmod +x gradlew
20
20
- name : Build with Gradle
21
21
run : ./gradlew build
22
- - name : Test with Gradle
23
- run : ./gradlew test
24
22
- name : Publish Test Report
25
23
uses : mikepenz/action-junit-report@v2
26
24
if : always() # always run even if the previous step fails
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ If you would like to use a tool that creates a graphql spring boot server using
37
37
38
38
``` groovy
39
39
dependencies {
40
- compile "io.github.graphql-java:graphql-java-annotations:8.5 "
40
+ compile "io.github.graphql-java:graphql-java-annotations:9.0 "
41
41
}
42
42
```
43
43
@@ -47,7 +47,7 @@ dependencies {
47
47
<dependency>
48
48
<groupId>io.github.graphql-java</groupId>
49
49
<artifactId>graphql-java-annotations</artifactId>
50
- <version>8.5 </version>
50
+ <version>9.0 </version>
51
51
</dependency>
52
52
```
53
53
Original file line number Diff line number Diff line change @@ -55,6 +55,12 @@ public void activate() {
55
55
typeFunctions .add (new BooleanFunction ());
56
56
typeFunctions .add (new FloatFunction ());
57
57
typeFunctions .add (new IntegerFunction ());
58
+ typeFunctions .add (new LongFunction ());
59
+ typeFunctions .add (new ByteFunction ());
60
+ typeFunctions .add (new ShortFunction ());
61
+ typeFunctions .add (new BigIntegerFunction ());
62
+ typeFunctions .add (new BigDecimalFunction ());
63
+ typeFunctions .add (new CharFunction ());
58
64
typeFunctions .add (new IterableFunction (DefaultTypeFunction .this ));
59
65
typeFunctions .add (new ArrayFunction (DefaultTypeFunction .this ));
60
66
typeFunctions .add (new StreamFunction (DefaultTypeFunction .this ));
You can’t perform that action at this time.
0 commit comments