Skip to content

Commit

Permalink
add a morphia upgrade job
Browse files Browse the repository at this point in the history
  • Loading branch information
evanchooly committed Dec 15, 2024
1 parent 004f0d3 commit dd6e32a
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/upgrades.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Test Morphia Upgrades

on:
workflow_dispatch:
schedule:
- cron: @weekly

jobs:
Build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build with Tests
run: |
mvn -U org.openrewrite.maven:rewrite-maven-plugin:run \
-Drewrite.recipeArtifactCoordinates=dev.morphia.morphia:rewrite:3.0.0-SNAPSHOT \
-Drewrite.activeRecipes=dev.morphia.UpgradeToMorphia30
mvn -e -U verify

0 comments on commit dd6e32a

Please sign in to comment.