-
-
Notifications
You must be signed in to change notification settings - Fork 142
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a83b40d
commit 73c1853
Showing
2 changed files
with
30 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
name: Upstream Dispatch v3 | ||
|
||
# test build when upstream jackson modules are published | ||
|
||
on: | ||
repository_dispatch: | ||
types: [jackson-databind-pushed] | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build: | ||
name: Build and Test on databind v3 changes | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout current branch (full) | ||
uses: actions/checkout@v4 | ||
with: | ||
ref: master | ||
fetch-depth: 0 | ||
|
||
- name: Setup Java (zulu@11) | ||
uses: actions/setup-java@v4 | ||
with: | ||
distribution: zulu | ||
java-version: 11 | ||
cache: sbt | ||
|
||
- run: sbt -J-Xmx2G '++ 2.13' test |