File tree Expand file tree Collapse file tree 2 files changed +62
-0
lines changed Expand file tree Collapse file tree 2 files changed +62
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Upstream Dispatch v2
2+
3+ # test build when upstream jackson modules are published
4+
5+ on :
6+ repository_dispatch :
7+ types : [jackson-databind-pushed]
8+ workflow_dispatch :
9+
10+ jobs :
11+ build :
12+ name : Build and Test on databind v2 changes
13+ runs-on : ubuntu-latest
14+ steps :
15+ - name : Checkout current branch (full)
16+ uses : actions/checkout@v5
17+ with :
18+ ref : 2.x
19+ fetch-depth : 0
20+
21+ - name : Setup sbt
22+ uses : sbt/setup-sbt@v1
23+
24+ - name : Setup Java (zulu@8)
25+ uses : actions/setup-java@v5
26+ with :
27+ distribution : zulu
28+ java-version : 8
29+ cache : sbt
30+
31+ - run : sbt -J-Xmx2G '++ 2.13' test
Original file line number Diff line number Diff line change 1+ name : Upstream Dispatch v3
2+
3+ # test build when upstream jackson modules are published
4+
5+ on :
6+ repository_dispatch :
7+ types : [jackson-databind-pushed-v3]
8+ workflow_dispatch :
9+
10+ jobs :
11+ build :
12+ name : Build and Test on databind v3 changes
13+ runs-on : ubuntu-latest
14+ steps :
15+ - name : Checkout current branch (full)
16+ uses : actions/checkout@v5
17+ with :
18+ ref : 3.x
19+ fetch-depth : 0
20+
21+ - name : Setup sbt
22+ uses : sbt/setup-sbt@v1
23+
24+ - name : Setup Java (zulu@17)
25+ uses : actions/setup-java@v5
26+ with :
27+ distribution : zulu
28+ java-version : 17
29+ cache : sbt
30+
31+ - run : sbt -J-Xmx2G '++ 2.13' test
You can’t perform that action at this time.
0 commit comments