Skip to content

Commit 0b4f38f

Browse files
authored
Create upstream-dispatch.yml
1 parent 20fc11c commit 0b4f38f

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed
+30
Original file line numberDiff line numberDiff line change
@@ -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+
with:
26+
distribution: zulu
27+
java-version: 11
28+
cache: sbt
29+
30+
- run: sbt -J-Xmx2G '++ 2.13' test

0 commit comments

Comments
 (0)