chore: remove spotless check override for Java 25#287
Conversation
WalkthroughThe Changes
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~3 minutes Possibly related PRs
Suggested reviewers
🚥 Pre-merge checks | ✅ 4✅ Passed checks (4 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing touches🧪 Generate unit tests (beta)
No actionable comments were generated in the recent review. 🎉 Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #287 +/- ##
=========================================
Coverage 37.70% 37.70%
Complexity 1236 1236
=========================================
Files 197 197
Lines 7609 7609
Branches 880 880
=========================================
Hits 2869 2869
Misses 4601 4601
Partials 139 139 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
There was a problem hiding this comment.
Pull request overview
This PR updates the main CI workflow to run the same Gradle task set across all Java versions in the test matrix, removing the special-casing that skipped spotlessCheck on Java 25.
Changes:
- Removed the Java 25 conditional that excluded
spotlessCheck. - Standardized the CI Gradle invocation to
./gradlew build test-integrationfor Java 17/21/25.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Removes the spotless check override for Java 25 in the CI workflow. Previously, Java 25 builds were skipping
spotlessCheckand only runningbuild test-integration. This change ensures all Java versions (17, 21, 25) run the full build process consistently, including code formatting checks.Summary by CodeRabbit