Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
 into 2.18
  • Loading branch information
pjfanning committed May 8, 2024
2 parents 038be02 + 9fc827e commit 889d3a8
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/upstream-dispatch.yml
@@ -0,0 +1,27 @@
name: Upstream Dispatch

# test build when upstream jackson modules are published

on:
repository_dispatch:
types: [jackson-databind-pushed]
workflow_dispatch:

jobs:
build:
name: Build and Test
runs-on: ubuntu-latest
steps:
- name: Checkout current branch (full)
uses: actions/checkout@v4
with:
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

0 comments on commit 889d3a8

Please sign in to comment.