Skip to content

Commit

Permalink
Create upstream-dispatch.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
pjfanning authored May 8, 2024
1 parent 20fc11c commit 0b4f38f
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/upstream-dispatch.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Upstream Dispatch

# test build when upstream jackson modules are published

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

env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

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 0b4f38f

Please sign in to comment.