Change default Gradle operation from 'test' to 'check' - #53
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This PR changes the default Gradle task executed by the shared reusable workflow test.gradle.yml from test to check, aiming to run linting/verification tasks automatically as part of the default Gradle verification step.
Changes:
- Update
on.workflow_call.inputs.gradle-operations.defaultfromtest ...tocheck ....
Changed files: .github/workflows/test.gradle.yml
Per-file validation
.github/workflows/test.gradle.yml- What changed: Default value for
gradle-operationsinput. - Validation result: ❌ Error
- Issue: Changing the default from
test→checkis a non-additive behavioral change that can break existing@v2consumers that rely on the default (more tasks executed; new failures/time increases). Callers in other repos cannot be audited from this repository.
- What changed: Default value for
Fr3dric0
approved these changes
Jun 16, 2026
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.
To enable Linting task running automatically, we are changing 'test' to 'check'. Most of the services would run fine without any changes. Some services would need small code changes (ref. https://trello.com/c/S1pkooUg/1878-linting-bør-kjøre-som-default-i-alle-servicer)