We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 038be02 + 9fc827e commit 889d3a8Copy full SHA for 889d3a8
.github/workflows/upstream-dispatch.yml
@@ -0,0 +1,27 @@
1
+name: Upstream Dispatch
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
13
+ runs-on: ubuntu-latest
14
+ steps:
15
+ - name: Checkout current branch (full)
16
+ uses: actions/checkout@v4
17
+ with:
18
+ fetch-depth: 0
19
20
+ - name: Setup Java (zulu@11)
21
+ uses: actions/setup-java@v4
22
23
+ distribution: zulu
24
+ java-version: 11
25
+ cache: sbt
26
27
+ - run: sbt -J-Xmx2G '++ 2.13' test
0 commit comments