File tree Expand file tree Collapse file tree 3 files changed +25
-2
lines changed
Expand file tree Collapse file tree 3 files changed +25
-2
lines changed Original file line number Diff line number Diff line change 55
66jobs :
77 build :
8- name : Build branch
8+ name : Build and Test
99 runs-on : ubuntu-latest
1010 steps :
1111 - name : Checkout source code
2020
2121 - name : Build
2222 run : mvn verify
23+
24+ jackson2-tests :
25+ name : Jackson 2 Integration Tests
26+ runs-on : ubuntu-latest
27+ steps :
28+ - name : Checkout source code
29+ uses : actions/checkout@v4
30+
31+ - name : Set up JDK 17
32+ uses : actions/setup-java@v4
33+ with :
34+ java-version : ' 17'
35+ distribution : ' temurin'
36+ cache : ' maven'
37+
38+ - name : Jackson 2 Integration Tests
39+ run : mvn -pl mcp-test -am -Pjackson2 test
Original file line number Diff line number Diff line change 2525 uses : actions/setup-node@v4
2626 with :
2727 node-version : ' 20'
28-
28+
29+ - name : Jackson 2 Integration Tests
30+ run : mvn -pl mcp-test -am -Pjackson2 test
31+
2932 - name : Build and Test
3033 run : mvn clean verify
3134
Original file line number Diff line number Diff line change 3232 - name : Generate Java docs
3333 run : mvn -Pjavadoc -B javadoc:aggregate
3434
35+ - name : Jackson 2 Integration Tests
36+ run : mvn -pl mcp-test -am -Pjackson2 test
37+
3538 - name : Build with Maven and deploy to Sonatype snapshot repository
3639 env :
3740 MAVEN_USERNAME : ${{ secrets.OSSRH_USERNAME }}
You can’t perform that action at this time.
0 commit comments