-
Notifications
You must be signed in to change notification settings - Fork 28.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[SPARK-29199][INFRA] Add linters and license/dependency checkers to GitHub Action #25879
Conversation
|
Test build #111107 has finished for PR 25879 at commit
|
Test build #111108 has finished for PR 25879 at commit
|
Thank you, @srowen . |
- name: Scala | ||
run: ./dev/lint-scala | ||
- name: Java | ||
run: ./dev/lint-java |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
FYI, using ./dev/sbt-checkstyle
might speed up this linter but using mvn should be good enough.
LGTM too |
Thanks for the advice, @HyukjinKwon . |
Since |
…itHub Action This PR aims to add linters and license/dependency checkers to GitHub Action. This excludes `lint-r` intentionally because https://github.com/actions/setup-r is not ready. We can add that later when it becomes available. This will help the PR reviews. No. See the GitHub Action result on this PR. Closes #25879 from dongjoon-hyun/SPARK-29199. Authored-by: Dongjoon Hyun <[email protected]> Signed-off-by: Dongjoon Hyun <[email protected]>
…itHub Action This PR aims to add linters and license/dependency checkers to GitHub Action. This excludes `lint-r` intentionally because https://github.com/actions/setup-r is not ready. We can add that later when it becomes available. This will help the PR reviews. No. See the GitHub Action result on this PR. Closes apache#25879 from dongjoon-hyun/SPARK-29199. Authored-by: Dongjoon Hyun <[email protected]> Signed-off-by: Dongjoon Hyun <[email protected]>
What changes were proposed in this pull request?
This PR aims to add linters and license/dependency checkers to GitHub Action. This excludes
lint-r
intentionally because https://github.com/actions/setup-r is not ready. We can add that later when it becomes available.Why are the changes needed?
This will help the PR reviews.
Does this PR introduce any user-facing change?
No.
How was this patch tested?
See the GitHub Action result on this PR.