chore: Add GitHub Actions CI Workflow#3
Merged
impatient0 merged 3 commits intodevelopfrom Oct 27, 2025
Merged
Conversation
- Define run conditions, job name and base image
- Define the job steps:
1. Checkout code
2. Set up JDK
3. Build, test and package
- Add a brief overview of the workflow to README.md - Add a more detailed description of CI process to ARCHITECTURE.md
impatient0
added a commit
that referenced
this pull request
Oct 27, 2025
* feat: scaffold the ci workflow
- Define run conditions, job name and base image
* feat: complete the ci workflow
- Define the job steps:
1. Checkout code
2. Set up JDK
3. Build, test and package
* docs: update the docs to include CI
- Add a brief overview of the workflow to README.md
- Add a more detailed description of CI process to ARCHITECTURE.md
---------
Co-authored-by: Pepe Ronin <ivanpetrovskiy98@gmail.com>
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.
Summary
This pull request introduces the initial Continuous Integration (CI) workflow for the A-Zero project using GitHub Actions. The goal is to establish an automated quality gate that ensures the stability and correctness of our primary development branches.
Key Features
.github/workflows/build.yml.mainanddevelopbranches.mvn -B packageto compile all source code, run all automated tests, and package the artifacts.actions/setup-javato dramatically speed up subsequent builds by caching Maven dependencies.This PR establishes a foundational piece of our development process, directly supporting our "safety and correctness" principle by ensuring no code can be merged without passing automated checks first.