Move formatting workflows into separate file#4480
Merged
jlerbsc merged 3 commits intojavaparser:masterfrom Jun 24, 2024
Merged
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #4480 +/- ##
=========================================
Coverage 57.877% 57.877%
=========================================
Files 507 507
Lines 29737 29737
Branches 5245 5245
=========================================
Hits 17211 17211
Misses 10395 10395
Partials 2131 2131
Flags with carried forward coverage won't be shown. Click here to find out more. Continue to review full report in Codecov by Sentry.
|
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR moves the style/formatting jobs out of the maven tests workflow and into a new "Check codegen and formatting" workflow. The benefit of this is that these will also be separated in the workflow runs panel (see https://github.com/javaparser/javaparser/actions once they've run for this PR). It also changes the names of the tasks to
which are clearer than the previous
This will make it easier to separate test failures from style issues from the overview panel. The drawback is that each PR will generate 2 entries in this overview, which means finding workflows run for a specific pr/merge could be harder. In my opinion, the benefits outweigh the drawbacks, but please feel free to close this PR if you disagree :)