ci: add ci/cd pipeline and dockerfile (story 1.2)#2
Merged
vieiralucas merged 5 commits intomainfrom Feb 11, 2026
Merged
Conversation
There was a problem hiding this comment.
1 issue found across 5 files
Prompt for AI agents (all issues)
Check if these issues are valid — if so, understand the root cause of each and fix them.
<file name=".github/workflows/ci.yml">
<violation number="1" location=".github/workflows/ci.yml:17">
P2: Pin GitHub Actions to immutable commit SHAs instead of mutable tags to prevent unexpected or malicious updates in CI.</violation>
</file>
Reply with feedback, questions, or to request a fix. Tag @cubic-dev-ai to re-run a review.
d9f7556 to
f4d3033
Compare
Base automatically changed from
feat/1-1-cargo-workspace-protobuf-definitions
to
main
February 11, 2026 15:51
- ci workflow with fmt, clippy, test, bench jobs on PR and push to main - release workflow triggered on version tags with 4-target build matrix - multi-stage dockerfile for ghcr.io container image - cross-compilation support for linux-arm64 via cross tool
revert --no-tests=pass flag in favor of an actual test
f4d3033 to
490ef1c
Compare
This was referenced Feb 12, 2026
4 tasks
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
Test plan
docker build .Summary by cubic
Adds a complete CI/CD pipeline with actions pinned to commit SHAs: CI runs fmt, clippy, tests, and benches on every pull request and on main; tagged releases build cross-platform binaries and publish a Docker image to GHCR. Satisfies Story 1.2 requirements for automated quality checks and release packaging.
Written for commit 490ef1c. Summary will update on new commits.