We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 20fc11c commit 0b4f38fCopy full SHA for 0b4f38f
.github/workflows/upstream-dispatch.yml
@@ -0,0 +1,30 @@
1
+name: Upstream Dispatch
2
+
3
+# test build when upstream jackson modules are published
4
5
+on:
6
+ repository_dispatch:
7
+ types: [jackson-core-pushed]
8
+ workflow_dispatch:
9
10
+env:
11
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
12
13
+jobs:
14
+ build:
15
+ name: Build and Test
16
+ runs-on: ubuntu-latest
17
+ steps:
18
+ - name: Checkout current branch (full)
19
+ uses: actions/checkout@v4
20
+ with:
21
+ fetch-depth: 0
22
23
+ - name: Setup Java (zulu@11)
24
+ uses: actions/setup-java@v4
25
26
+ distribution: zulu
27
+ java-version: 11
28
+ cache: sbt
29
30
+ - run: sbt -J-Xmx2G '++ 2.13' test
0 commit comments