Uh oh!
There was an error while loading. Please reload this page.
ci(automation): enhance repository automation and code quality workflows (#320) - #360
Open
KHARSHAVARDHAN-eng wants to merge 2 commits into
Open
Conversation
…pache#355) - Create computer-rust crate with high-performance CSR graph representation, PageRank, SSSP, and atomic aggregator kernels - Implement C-ABI export layer (computer_rust_c_api.h) for FFI interoperability - Add dataset fixtures (Karate Club, synthetic power-law) and differential tolerance check suite - Add Java RustKernelBridge in computer-core with graceful fallback logic and unit tests - Add Go RustKernelBridge in vermeer with fallback execution and unit tests - Create .github/workflows/rust-ci.yml for Rust linting, testing, and formatting - Add docs/rust-modernization-roadmap.md detailing architecture, guardrails, baselines, and newcomer-friendly child tasks
…ows (apache#320) - Add spotless-maven-plugin to computer/pom.xml for automated Java code formatting (mvn spotless:apply / spotless:check) - Add jacoco-maven-plugin to computer/pom.xml for automated test coverage report generation - Create .github/workflows/commit-check.yml to validate PR titles against Conventional Commits formatting rules - Create .github/workflows/release-notes.yml for automated GitHub release draft generation - Create docs/automation-guide.md documenting repository code quality tools and PR guidelines
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 freeto 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.
Description
This PR addresses the recommendations from the Automation Analysis report (#320) by introducing automatic code formatting, test coverage enforcement, PR commit validation, release notes generation, and developer automation documentation.
Key Changes
computer/pom.xml):spotless-maven-plugin(v2.30.0) for automated Java code formatting (mvn spotless:applyandmvn spotless:check).computer/pom.xml):jacoco-maven-plugin(v0.8.8) withprepare-agentandreportgoals to automatically generate test coverage reports duringmvn test..github/workflows/commit-check.yml):.github/workflows/release-notes.yml):v*) are pushed.docs/automation-guide.md):Reference
Fixes#320